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 |
---|---|---|---|
id_number | String | Yes | Nurse ID Number/License Number (e.g., "UP12345") |
{
"id_number": "UP12345"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for the verification result data |
data.client_id | String | Unique identifier for this verification request |
data.id_number | String | The nurse license number that was verified |
data.nurse_name | String | Full name of the registered nurse |
data.state_council | String | Medical state council where the nurse is registered |
data.registered_as | String | Registration category or designation |
data.status | String | Current license status (e.g., "Active") |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the verification was successful |
message | String | Human-readable status message |
message_code | String | Machine-readable status code |
{
"data": {
"client_id": "nuid_iJdaIfMygwJRqoeFhJlp",
"id_number": "UP12345",
"nurse_name": "V Singh",
"state_council": "Lucknow",
"registered_as": "okok",
"status": "Active"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"status_code": 400,
"success": false,
"message": "Invalid nurse ID number format",
"message_code": "invalid_id_format"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/nuid/nuid-verification' \
--header 'Authorization: Bearer TOKEN' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "UP12345"
}'
{
"data": {
"client_id": "nuid_iJdaIfMygwJRqoeFhJlp",
"id_number": "UP12345",
"nurse_name": "V Singh",
"state_council": "Lucknow",
"registered_as": "okok",
"status": "Active"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}