Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header as Bearer TOKEN.https://sandbox.surepass.iohttps://kyc-api.surepass.io| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Bearer token authentication using JWT |
| Content-Type | Yes | application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| id_number | String | Yes | 12-digit UAN (Universal Account Number) of the employee |
{
"id_number": "101669821230"
}| Parameter | Type | Description |
|---|---|---|
| data | Object | Contains the employment history information |
| data.client_id | String | Unique identifier for the API request |
| data.uan | String | UAN number of the employee |
| data.employment_history | Array | List of employment records |
| status_code | Integer | HTTP status code of the response |
| success | Boolean | Indicates if the request was successful |
| message | String | Additional information about the response (null if successful) |
| message_code | String | Code indicating the status of the response |
| Parameter | Type | Description |
|---|---|---|
| name | String | Full name of the employee |
| guardian_name | String | Name of the employee's guardian |
| establishment_name | String | Name of the employer/company |
| member_id | String | EPFO member identification number |
| date_of_joining | String | Date when employee joined (YYYY-MM-DD format) |
| date_of_exit | String | Date when employee left (YYYY-MM-DD format), null if currently employed |
| last_pf_submitted | String | Date of last PF contribution (YYYY-MM-DD format) |
| wage_month | String | Month for which the last wage was processed |
{
"data": {
"client_id": "employment_history_uan_aueTsCLbIqUDULtEFwZU",
"uan": "111779821234",
"employment_history": [
{
"name": "Munna Bhbaiya",
"guardian_name": "Kaleen Bhaiya",
"establishment_name": "I PROCESS SERVICES (INDIA) PVT. LTD.",
"member_id": "KDMAL004123654000313079",
"date_of_joining": "2021-03-15",
"date_of_exit": null,
"last_pf_submitted": "2022-06-14",
"wage_month": "May-2022"
}
]
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}{
"data": null,
"status_code": 400,
"success": false,
"message": "Invalid UAN number provided",
"message_code": "invalid_input"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/income/employment-history-uan' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "101669821230"
}'{
"data": {
"client_id": "employment_history_uan_aueTsCLbIqUDULtEFwZU",
"uan": "111779821234",
"employment_history": [
{
"name": "Munna Bhbaiya",
"guardian_name": "Kaleen Bhaiya",
"establishment_name": "I PROCESS SERVICES (INDIA) PVT. LTD.",
"member_id": "KDMAL004123654000313079",
"date_of_joining": "2021-03-15",
"date_of_exit": null,
"last_pf_submitted": "2022-06-14",
"wage_month": "May-2022"
}
]
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}