Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
ID of the user
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"
}
]
}
Get all documents associated with the user.
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"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
ID of the user