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 token (JWT) for API authentication |
| Content-Type | Yes | Must be application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| id_number | string | Yes | Universal Account Number (UAN) |
{
"id_number": "101234567890"
}| Parameter | Type | Description |
|---|---|---|
| data | object | Contains the main response data |
| data.client_id | string | Unique request identifier |
| data.uan | string | The UAN provided in the request |
| data.employment_history | array | List of employment records |
| data.employment_history[].name | string | Employee's full name |
| data.employment_history[].guardian_name | string | Name of the employee's guardian |
| data.employment_history[].establishment_name | string | Name of the employing organization |
| data.employment_history[].member_id | string | Unique member ID for the employment record |
| data.employment_history[].date_of_joining | string | Date of joining (YYYY-MM-DD) |
| data.employment_history[].date_of_exit | string | Date of exit (YYYY-MM-DD) |
| status_code | number | HTTP status code (e.g., 200 for success) |
| success | boolean | Indicates if the request was successful |
| message | string | Human-readable status message |
| message_code | string | Machine-readable status code |
{
"data": {
"client_id": "employment_history_uan_v2_AbcXyz123PqrLMN789",
"uan": "101234567890",
"employment_history": [
{
"name": "RAHUL KUMAR SHARMA",
"guardian_name": "MOHAN LAL SHARMA",
"establishment_name": "DELHI METRO RAIL CORPORATION",
"member_id": "DLCPM00567890000001234",
"date_of_joining": "2015-06-01",
"date_of_exit": "2020-03-31"
}
]
},
"status_code": 200,
"success": true,
"message": "Success",
"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/income/employment-history-uan-v2' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "101234567890"
}'{
"data": {
"client_id": "employment_history_uan_v2_AbcXyz123PqrLMN789",
"uan": "101234567890",
"employment_history": [
{
"name": "RAHUL KUMAR SHARMA",
"guardian_name": "MOHAN LAL SHARMA",
"establishment_name": "DELHI METRO RAIL CORPORATION",
"member_id": "DLCPM00567890000001234",
"date_of_joining": "2015-06-01",
"date_of_exit": "2020-03-31"
}
]
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}