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/ubos \
--header 'Authorization: Bearer <token>'
{
"count": 1,
"data": [
{
"id": "03aef9fa-0e58-4f42-a22f-46de619b42e0",
"role": "OWNER_OR_OPERATOR",
"roles": [
"UBO",
"DIRECTOR"
],
"businessTitle": "CEO",
"firstName": "John",
"firstNameLocal": "John",
"middleName": null,
"middleNameLocal": null,
"lastName": "Doe",
"lastNameLocal": "Doe",
"nationality": "USA",
"email": "example@gmail.com",
"phone": "+12223334444",
"address": {
"addressLine1": "123 Main St",
"addressLine2": null,
"city": "San Francisco",
"stateProvinceRegion": "CA",
"postalCode": "94105",
"country": "USA"
},
"dateOfBirth": "1990-01-01",
"countryOfBirth": "USA",
"stateOfBirth": "NJ",
"placeOfBirth": null,
"gender": "M",
"country": "USA",
"taxIdentificationNumber": "123456789",
"taxResidenceCountry": "USA",
"ipAddress": null,
"hasOwnership": true,
"hasControl": true,
"isSigner": true,
"relationshipEstablishedAt": "2020-01-01",
"govIdCountry": "USA",
"govIdType": "PASSPORT",
"govIdNumber": "123456789",
"govIdFrontUrl": "https://example.com",
"govIdBackUrl": "https://example.com",
"govIdIssuanceDate": "2020-01-01",
"govIdExpirationDate": "2027-01-01",
"govIdIssuanceAuthority": null,
"proofOfAddressType": "UTILITY_BILL",
"proofOfAddressUrl": "https://example.com",
"authLetterUrl": "https://example.com",
"shareProportion": 25,
"supplementaryInfo": null,
"supplementaryUrl": null,
"documents": []
}
]
}
Get all UBOs associated with the user.
curl --request GET \
--url https://production.hifibridge.com/v2/users/{userId}/kyc/ubos \
--header 'Authorization: Bearer <token>'
{
"count": 1,
"data": [
{
"id": "03aef9fa-0e58-4f42-a22f-46de619b42e0",
"role": "OWNER_OR_OPERATOR",
"roles": [
"UBO",
"DIRECTOR"
],
"businessTitle": "CEO",
"firstName": "John",
"firstNameLocal": "John",
"middleName": null,
"middleNameLocal": null,
"lastName": "Doe",
"lastNameLocal": "Doe",
"nationality": "USA",
"email": "example@gmail.com",
"phone": "+12223334444",
"address": {
"addressLine1": "123 Main St",
"addressLine2": null,
"city": "San Francisco",
"stateProvinceRegion": "CA",
"postalCode": "94105",
"country": "USA"
},
"dateOfBirth": "1990-01-01",
"countryOfBirth": "USA",
"stateOfBirth": "NJ",
"placeOfBirth": null,
"gender": "M",
"country": "USA",
"taxIdentificationNumber": "123456789",
"taxResidenceCountry": "USA",
"ipAddress": null,
"hasOwnership": true,
"hasControl": true,
"isSigner": true,
"relationshipEstablishedAt": "2020-01-01",
"govIdCountry": "USA",
"govIdType": "PASSPORT",
"govIdNumber": "123456789",
"govIdFrontUrl": "https://example.com",
"govIdBackUrl": "https://example.com",
"govIdIssuanceDate": "2020-01-01",
"govIdExpirationDate": "2027-01-01",
"govIdIssuanceAuthority": null,
"proofOfAddressType": "UTILITY_BILL",
"proofOfAddressUrl": "https://example.com",
"authLetterUrl": "https://example.com",
"shareProportion": 25,
"supplementaryInfo": null,
"supplementaryUrl": null,
"documents": []
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
ID of the user