Skip to main content
GET
/
v2
/
kyc
/
status
List all KYC statuses
curl --request GET \
  --url https://production.hifibridge.com/v2/kyc/status \
  --header 'Authorization: Bearer <token>'
[
  {
    "user": {
      "id": "35dbc7ea-2877-4a70-add6-b5458289df23",
      "type": "individual",
      "name": "John Doe",
      "email": "jd@hifibridge.com"
    },
    "rails": "USD",
    "createdAt": "2023-10-01T12:00:00Z",
    "updatedAt": "2023-10-02T12:00:00Z",
    "status": "ACTIVE"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

userId
string

The user ID.

userName
string
userEmail
string
rails
enum<string>

The type of rail.

Available options:
USD,
SOUTH_AMERICA_STANDARD,
AFRICA_GENERAL,
AFRICA_NIGERIA,
GLOBAL_NETWORK
status
enum<string>[]

The statuses of the KYC.

Minimum length: 1
limit
string

default to 10, maximum to 100

createdBefore
string<date>

ISO format: YYYY-MM-DD

createdAfter
string<date>

ISO format: YYYY-MM-DD

Response

Success

user
object
rails
enum<string>

The type of rail.

Available options:
USD,
SOUTH_AMERICA_STANDARD,
AFRICA_GENERAL,
AFRICA_NIGERIA,
GLOBAL_NETWORK
createdAt
string<date-time>
updatedAt
string<date-time>
status
enum<string>

Kyc Status

  • INACTIVE: No KYC submission has been made.
  • CREATED: KYC application has been submitted.
  • PENDING: Review in progress.
  • INCOMPLETE: RFI or resubmission required.
  • ACTIVE: User approved and onboarded.
  • REJECTED: KYC application rejected.
  • CONTACT_SUPPORT: Unexpected issue encountered during KYC review.
Available options:
INACTIVE,
CREATED,
PENDING,
INCOMPLETE,
ACTIVE,
REJECTED,
CONTACT_SUPPORT
I