Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header as Bearer TOKEN.https://sandbox.surepass.apphttps://kyc-api.surepass.app| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Bearer JWT token for API authentication |
| Content-Type | Yes | Must be application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| data | Object | Yes | Main data container for the request |
| data.individuals | Array | Yes | Array of individual CKYC verification requests |
| data.individuals[].ckyc_id | String | Yes | CKYC Number or CKYC Reference ID returned from CKYC Search API |
| data.individuals[].dob | String | Conditional | Date of birth in DD-MM-YYYY format (required if mobile_number not provided) |
| data.individuals[].mobile_number | String | Conditional | Mobile number for verification (required if dob not provided) |
{
"data": {
"individuals": [
{
"ckyc_id": "20087395964123",
"dob": "07-09-1997",
"mobile_number": ""
},
{
"ckyc_id": "20087395964123",
"dob": "07-09-1997",
"mobile_number": ""
}
]
}
}| Parameter | Type | Description |
|---|---|---|
| data | Object | Main response data container |
| data.client_id | String | Unique identifier for tracking the bulk download request |
| data.message | String | Descriptive message about the request status |
| data.state | String | Current state of the request (e.g., "Passed") |
| data.error | Array | Array of error messages (empty if successful) |
| status_code | Integer | HTTP status code of the response |
| success | Boolean | Indicates if the request was successful |
| message | String | General response message |
| message_code | String | Standardized message code |
{
"data": {
"client_id": "ckyc_bulk_download_tVjnhFvhsyCrmzwbiKHn",
"message": "CKYC bulk Download has been initiated",
"state": "pending",
"error": []
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"data": null,
"status_code": 401,
"success": false,
"message": "Unauthorized",
"message_code": "auth_failed"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/ckyc-upload/download/initialize' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"data": {
"individuals": [
{
"ckyc_id": "20087395964123",
"dob": "07-09-1997"
},
{
"ckyc_id": "20087395964123",
"dob": "07-09-1997"
}
]
}
}'{
"data": {
"client_id": "ckyc_bulk_download_tVjnhFvhsyCrmzwbiKHn",
"message": "CKYC bulk Download has been initiated",
"state": "pending",
"error": []
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}