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 | JWT Bearer token for authentication. Format: Bearer <your_token> |
Content-Type | Yes | Must be set to application/json |
Parameter | Type | Required | Description |
---|---|---|---|
application_number | String | Yes | The unique application number for the RC application you want to query |
{
"application_number": "GJ210409V123654"
}
Parameter | Type | Description |
---|---|---|
data | Object | Contains the response data |
data.client_id | String | Unique identifier for the client making the request |
data.application_number | String | The application number that was queried |
data.details | Object | Comprehensive details about the application |
data.details.application_dated | String | Date when the application was submitted |
data.details.application_time | String | Time when the application was submitted |
data.details.vehicle_number | String | Registration number of the vehicle |
data.details.transactions | Array | List of transactions related to the application |
data.details.other_transactions | Array | Additional related transactions and statuses |
status_code | Number | HTTP status code of the response |
success | Boolean | Indicates if the request was successful |
message | String | Additional message (null if successful) |
message_code | String | Code indicating the status of the request |
Parameter | Type | Description |
---|---|---|
s_no | String | Serial number of the transaction |
transaction_purpose | String | Purpose of the transaction |
authentication_type | String | Type of authentication used |
current_status | String | Current status with timestamp and details |
portal_name | String | Name of the portal where transaction occurred |
Parameter | Type | Description |
---|---|---|
hsrp_status | String | Status of High-Security Registration Plate |
fc_print | String | Status of Fitness Certificate printing |
rc_print_smart_card_status | String | Status of RC Smart Card generation |
dispatch_rc_status | String | Status of RC dispatch with tracking details |
{
"data": {
"client_id": "rc_application_status_hIWfcPDsxtGzqdDqbOvV",
"application_number": "GJ210409V123654",
"details": {
"application_dated": "09-Apr-2021",
"application_time": "12:30:10",
"vehicle_number": "GJ01RZ1234",
"transactions": [
{
"s_no": "1",
"transaction_purpose": "Additional LTT (TO Case)",
"authentication_type": "RTO",
"current_status": "ONLINE TRANSACTION SUCCESS ON 09-Apr-2021 12:30:10 .TRANSACTION COMPLETE.",
"portal_name": "ONLINE SERVICE"
},
{
"s_no": "2",
"transaction_purpose": "Smart Card Fee",
"authentication_type": "RTO",
"current_status": "ONLINE TRANSACTION SUCCESS ON 09-Apr-2021 12:30:10 .TRANSACTION COMPLETE.",
"portal_name": "ONLINE SERVICE"
},
{
"s_no": "3",
"transaction_purpose": "Transfer of Ownership",
"authentication_type": "RTO",
"current_status": "COMPLETED / APPROVED ON 15-Apr-2021 18:29:48 by user D B PATEL",
"portal_name": "ONLINE SERVICE"
}
],
"other_transactions": [
{
"hsrp_status": "Not Available",
"fc_print": "Not Available",
"rc_print_smart_card_status": "SMART CARD Generated 28-Apr-2021 12:58:48 by user SMARTCARD VENDOR",
"dispatch_rc_status": "DISPATCH RC Generated [ApplNo/Barcode: GJ210409V123654/EG12345678IN] dated 30-Apr-2021 10:47:57 by user SILVER TOUCH TECH LTD"
}
]
}
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
{
"status_code": 422,
"success": false,
"message": "Verification Failed.",
"message_code": "verification_failed"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/rc/rc-application-status' \
--header 'Content-Type: application/json' \
--data-raw '{
"application_number": "GJ210409V123654"
}'
{
"data": {
"client_id": "rc_application_status_hIWfcPDsxtGzqdDqbOvV",
"application_number": "GJ210409V123654",
"details": {
"application_dated": "09-Apr-2021",
"application_time": "12:30:10",
"vehicle_number": "GJ01RZ1234",
"transactions": [
{
"s_no": "1",
"transaction_purpose": "Additional LTT (TO Case)",
"authentication_type": "RTO",
"current_status": "ONLINE TRANSACTION SUCCESS ON 09-Apr-2021 12:30:10 .TRANSACTION COMPLETE.",
"portal_name": "ONLINE SERVICE"
},
{
"s_no": "2",
"transaction_purpose": "Smart Card Fee",
"authentication_type": "RTO",
"current_status": "ONLINE TRANSACTION SUCCESS ON 09-Apr-2021 12:30:10 .TRANSACTION COMPLETE.",
"portal_name": "ONLINE SERVICE"
},
{
"s_no": "3",
"transaction_purpose": "Transfer of Ownership",
"authentication_type": "RTO",
"current_status": "COMPLETED / APPROVED ON 15-Apr-2021 18:29:48 by user D B PATEL",
"portal_name": "ONLINE SERVICE"
}
],
"other_transactions": [
{
"hsrp_status": "Not Available",
"fc_print": "Not Available",
"rc_print_smart_card_status": "SMART CARD Generated 28-Apr-2021 12:58:48 by user SMARTCARD VENDOR",
"dispatch_rc_status": "DISPATCH RC Generated [ApplNo/Barcode: GJ210409V123654/EG12345678IN] dated 30-Apr-2021 10:47:57 by user SILVER TOUCH TECH LTD"
}
]
}
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}