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 | JWT Bearer token for authentication (Format: Bearer <token>) |
| Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| mobile_number | string | Yes | 10-digit mobile number associated with the vehicle registration. Must be a valid Indian mobile number without country code or special characters. |
{
"mobile_number": "9876543210"
}| Parameter | Type | Description |
|---|---|---|
| data | object | Container object holding the response data |
| data.client_id | string | Unique identifier for tracking this underwriting session. Use this ID to check status or retrieve results. |
| data.mobile_number | string | The mobile number submitted in the request, returned for confirmation |
| data.status | string | Current status of the underwriting process. Initial value is typically "pending" indicating the verification is in progress. |
| status_code | number | HTTP status code indicating the result of the API call (200 for success) |
| success | boolean | Indicates whether the API request was successful (true) or failed (false) |
| message | string | Human-readable message describing the result of the operation |
| message_code | string | Machine-readable code for programmatic handling of the response |
{
"data": {
"client_id": "mobile_rc_idv_underwriting_noPtef",
"mobile_number": "9876543210",
"status": "pending"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"data": null,
"status_code": 401,
"success": false,
"message": "Unauthorized access",
"message_code": "unauthorized"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/underwriting/mobile-rc-idv-underwriting/init' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"mobile_number": "9876543210"
}'{
"data": {
"client_id": "mobile_rc_idv_underwriting_noPtef",
"mobile_number": "9876543210",
"status": "pending"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}