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 API authentication. Format: Bearer {your_jwt_token} |
| Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| client_id | string | Yes | Unique identifier for the underwriting verification request. This ID is used to track and retrieve the status of the verification process across multiple API calls. |
{
"client_id": "mobile_rc_idv_underwriting_noPtef"
}| Parameter | Type | Description |
|---|---|---|
| data | object | Container object holding all verification results and status information |
| data.client_id | string | Echo of the request client_id used to track this verification |
| data.mobile_number | string | Mobile number associated with the verification request (10-digit format) |
| data.result | string | Calculated Insured Declared Value (IDV) for the registered vehicles in rupees |
| data.mobile_to_name_status | string | Status of mobile-to-name verification process. Values: pending, in_progress, completed, failed |
| data.full_name | string | Full name of the person associated with the mobile number (uppercase format) |
| data.mobile_to_rc_status | string | Status of mobile-to-RC linking process. Values: pending, in_progress, completed, failed |
| data.rc_numbers | array[string] | Array of vehicle registration certificate numbers linked to the mobile number |
| data.rc_to_idv_status | string | Status of RC-to-IDV calculation process. Values: pending, in_progress, completed, failed |
| data.status | string | Overall status of the entire verification workflow. Values: pending, in_progress, completed, failed |
| status_code | integer | HTTP status code of the response (200 for success) |
| success | boolean | Indicates whether the API request was successful |
| message | string | Human-readable message describing the result |
| message_code | string | Machine-readable code for programmatic response handling |
{
"data": {
"client_id": "mobile_rc_idv_underwriting_noPtef",
"mobile_number": "9876543210",
"result": "243021.0",
"mobile_to_name_status": "completed",
"full_name": "RAJIV TALWAR",
"mobile_to_rc_status": "completed",
"rc_numbers": [
"AB12CD3456"
],
"rc_to_idv_status": "completed",
"status": "completed"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"data": null,
"status_code": 404,
"success": false,
"message": "Client ID not found",
"message_code": "client_id_not_found"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/underwriting/mobile-rc-idv-underwriting/status' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"client_id": "mobile_rc_idv_underwriting_noPtef"
}'{
"data": {
"client_id": "mobile_rc_idv_underwriting_noPtef",
"mobile_number": "9876543210",
"result": "243021.0",
"mobile_to_name_status": "completed",
"full_name": "RAJIV TALWAR",
"mobile_to_rc_status": "completed",
"rc_numbers": [
"AB12CD3456"
],
"rc_to_idv_status": "completed",
"status": "completed"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}