Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization
header as Bearer TOKEN
.https://sandbox.surepass.io
https://kyc-api.surepass.io
Header | Required | Description |
---|---|---|
Authorization | Yes | Bearer token for authentication (JWT format) |
Content-Type | Yes | Application/json |
Parameter | Type | Required | Description |
---|---|---|---|
entity_id | String | Yes | Unique identifier for the entity. Accepts CIN, PAN, or LLP formats. |
{
"entity_id": "NHQPS9361L"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for the response data |
data.client_id | String | Unique identifier for the API request |
data.entity_id | String | Entity's unique identification number |
data.entity_type | String | Type of the entity (e.g., company) |
data.status | String | Current status of the entity (pending, completed, or failed) |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the request was successful |
message | String | Human-readable message about the response |
message_code | String | Machine-readable message code |
{
"data": {
"client_id": "mca_ubo_BQgmfkfdFjxqhwRedZyv",
"entity_id": "L51500MH9876PLC001234",
"entity_type": "company",
"status": "pending"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"status_code": 400,
"success": false,
"message": "Invalid entity ID format",
"message_code": "invalid_entity_id"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/mca-ubo/create-order' \
--header 'Content-Type: application/json' \
--data-raw '{
"entity_id": "NHQPS9361L"
}'
{
"data": {
"client_id": "mca_ubo_BQgmfkfdFjxqhwRedZyv",
"entity_id": "L51500MH9876PLC001234",
"entity_type": "company",
"status": "pending"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}