Skip to main content
GET
/
v2
/
users
/
{userId}
/
kyc
/
documents
List all documents
curl --request GET \
  --url https://production.hifibridge.com/v2/users/{userId}/kyc/documents \
  --header 'Authorization: Bearer <token>'
{
  "count": 2,
  "data": [
    {
      "id": "7c9439f6-655b-4aeb-9b32-e17759ee9134",
      "type": "CERTIFICATE_OF_INCORPORATION",
      "subType": "SINGLE_SIDE",
      "issuedCountry": "USA",
      "issuedDate": null,
      "expiryDate": null,
      "number": null,
      "description": null,
      "url": "https://example.com/doc_123",
      "fileId": "file_zEFpbPhk71NaQfEVMR544",
      "uboId": null
    },
    {
      "id": "7a9dc485-3216-47fd-baa4-a7ab4085b723",
      "type": "PASSPORT",
      "subType": "SINGLE_SIDE",
      "issuedCountry": "USA",
      "issuedDate": null,
      "expiryDate": null,
      "number": null,
      "description": null,
      "url": "https://example.com/doc_123",
      "fileId": "file_zEFpbPhk71NaQfEVMR544",
      "uboId": "3285c3be-ef36-4f01-bf95-578d3116f0ff"
    }
  ]
}

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

Response

Success

count
integer

Number of documents.

data
Document Object · object[]
I