Skip to main content
POST
/
v2
/
users
/
{userId}
/
kyc
/
submissions
Submit KYC
curl --request POST \
  --url https://production.hifibridge.com/v2/users/{userId}/kyc/submissions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "rails": "USD"
}'
{
"USD": {
"status": "CREATED",
"message": "Your KYC application has been successfully created. We will review it shortly."
}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

userId
string
required

ID of the user

Body

application/json
rails
enum<string>
required

The type of rail.

Available options:
USD,
SOUTH_AMERICA_STANDARD,
AFRICA_GENERAL,
AFRICA_NIGERIA,
GLOBAL_NETWORK

Response

Success

  • Kyc Submission Object (USD)
  • Kyc Submission Object (SOUTH_AMERICA_STANDARD)
  • Kyc Submission Object (AFRICA_GENERAL)
  • Kyc Submission Object (AFRICA_NIGERIA)
  • Kyc Submission Object (GLOBAL_NETWORK)
USD
object
required
I