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 | Bearer token for authentication (JWT) |
Content-Type | Yes | application/json |
Parameter | Type | Required | Description |
---|---|---|---|
pan_number | String | Conditional* | User's PAN number |
mobile_number | String | Conditional* | User's mobile number |
employee_name | String | No | Name of the employee |
employer_name | String | No | Name of the employer |
pan_number
or mobile_number
is required.{
"mobile_number": "8079027839",
"employee_name": "VISHAL",
"employer_name": "VISHAL"
}
Parameter | Type | Description |
---|---|---|
data | Object | Contains all employment history data |
data.client_id | String | Unique client identifier for the request |
data.uan | String | Universal Account Number of the employee |
data.epfo_details | Object | EPFO-related details of the employee |
data.month_history | Array | List of contribution status for each month |
data.employment_history_details | Array | Detailed history of employment records |
status_code | Integer | 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 |
---|---|---|
employee_name_matching_score | String | Matching score of the employee's name |
employer_name_matching_score | String | Matching score of the employer's name |
establishment_name | String | Name of the establishment linked with EPFO |
establishment_info | Object | Additional details of the establishment |
Parameter | Type | Description |
---|---|---|
address | String | Address of the establishment |
city | String | City where the establishment is located |
district | String | District where the establishment is located |
state | String | State where the establishment is located |
region | String | Region code of the establishment |
establishment_id | String | Establishment ID of the employer |
less_info | Boolean | Indicates whether fewer details are available |
Parameter | Type | Description |
---|---|---|
month_year | String | Month and year of contribution (e.g., "NOV-24") |
status | Boolean | Indicates whether the contribution was made for that month |
Parameter | Type | Description |
---|---|---|
name | String | Name of the employee |
guardian_name | String | Guardian name of the employee |
establishment_name | String | Name of the establishment |
member_id | String | Member ID linked to the EPFO account |
date_of_joining | Date | Date when the employee joined (YYYY-MM-DD) |
date_of_exit | Date | Date when the employee left (null if still employed) |
last_pf_submitted | Date | Date of the last PF submission (YYYY-MM-DD) |
wage_month | String | Month for which wages were submitted (e.g., "Oct-2024") |
{
"data": {
"client_id": "employment_history_pan_mobile_ROomlsLyTpPrRGAZebAl",
"uan": "109804431233",
"epfo_details": {
"employee_name_matching_score": "62",
"employer_name_matching_score": "38",
"establishment_name": "TRIDENT LIMITED",
"establishment_info": {
"address": "HOSHANGABAD ROAD BUDHNI MADHYA PRADESH",
"city": "BUDHNI",
"establishment_name": "TRIDENT LIMITED",
"district": "BUDHNI",
"state": "MADHYA PRADESH",
"region": "MP",
"establishment_id": "MPBPL2788671000",
"less_info": false
}
},
"month_history": [
{
"month_year": "NOV-24",
"status": true
},
{
"month_year": "OCT-24",
"status": true
},
{
"month_year": "SEP-24",
"status": true
}
],
"employment_history_details": [
{
"name": "AJAY SINGH",
"guardian_name": "GOPAL SINGH",
"establishment_name": "TRIDENT LIMITED (BED LINEN DIVISION)",
"member_id": "MPBPL27886730000017755",
"date_of_joining": "2023-01-05",
"date_of_exit": null,
"last_pf_submitted": "2024-11-14",
"wage_month": "Oct-2024"
},
{
"name": "AJAY SINGH",
"guardian_name": "GOPAL SINGH",
"establishment_name": "TRIDENT LIMITED (BED LINEN DIVISION)",
"member_id": "MPBPL27886730000011234",
"date_of_joining": "2022-10-01",
"date_of_exit": null,
"last_pf_submitted": "2023-02-15",
"wage_month": "Jan-2023"
},
{
"name": "AJAY SINGH",
"guardian_name": "GOPAL SINGH",
"establishment_name": "TRIDENT LIMITED",
"member_id": "MPBPL00188730000039854",
"date_of_joining": "2021-11-02",
"date_of_exit": null,
"last_pf_submitted": "2022-10-14",
"wage_month": "Sep-2022"
},
{
"name": "AJAY SINGH",
"guardian_name": "GOPAL SINGH",
"establishment_name": "TRIDENT LIMITED",
"member_id": "MPBPL00188730000030099",
"date_of_joining": "2021-08-18",
"date_of_exit": null,
"last_pf_submitted": "2021-11-13",
"wage_month": "Oct-2021"
},
{
"name": "AJAY SINGH",
"guardian_name": "GOPAL SINGH",
"establishment_name": "TANU ENTERPRISES",
"member_id": "MPBPL14438410000011534",
"date_of_joining": "2020-08-10",
"date_of_exit": null,
"last_pf_submitted": "2021-02-15",
"wage_month": "Jan-2021"
}
]
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
{
"status_code": 401,
"success": false,
"message": "Invalid or expired token",
"message_code": "authentication_error"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/employment/employment-history-pan-mobile' \
--header 'Content-Type: application/json' \
--data-raw '{
"mobile_number": "8079027839",
"employee_name": "VISHAL",
"employer_name": "VISHAL"
}'
{
"data": {
"client_id": "employment_history_pan_mobile_ROomlsLyTpPrRGAZebAl",
"uan": "109804431233",
"epfo_details": {
"employee_name_matching_score": "62",
"employer_name_matching_score": "38",
"establishment_name": "TRIDENT LIMITED",
"establishment_info": {
"address": "HOSHANGABAD ROAD BUDHNI MADHYA PRADESH",
"city": "BUDHNI",
"establishment_name": "TRIDENT LIMITED",
"district": "BUDHNI",
"state": "MADHYA PRADESH",
"region": "MP",
"establishment_id": "MPBPL2788671000",
"less_info": false
}
},
"month_history": [
{
"month_year": "NOV-24",
"status": true
},
{
"month_year": "OCT-24",
"status": true
},
{
"month_year": "SEP-24",
"status": true
}
],
"employment_history_details": [
{
"name": "AJAY SINGH",
"guardian_name": "GOPAL SINGH",
"establishment_name": "TRIDENT LIMITED (BED LINEN DIVISION)",
"member_id": "MPBPL27886730000017755",
"date_of_joining": "2023-01-05",
"date_of_exit": null,
"last_pf_submitted": "2024-11-14",
"wage_month": "Oct-2024"
},
{
"name": "AJAY SINGH",
"guardian_name": "GOPAL SINGH",
"establishment_name": "TRIDENT LIMITED (BED LINEN DIVISION)",
"member_id": "MPBPL27886730000011234",
"date_of_joining": "2022-10-01",
"date_of_exit": null,
"last_pf_submitted": "2023-02-15",
"wage_month": "Jan-2023"
},
{
"name": "AJAY SINGH",
"guardian_name": "GOPAL SINGH",
"establishment_name": "TRIDENT LIMITED",
"member_id": "MPBPL00188730000039854",
"date_of_joining": "2021-11-02",
"date_of_exit": null,
"last_pf_submitted": "2022-10-14",
"wage_month": "Sep-2022"
},
{
"name": "AJAY SINGH",
"guardian_name": "GOPAL SINGH",
"establishment_name": "TRIDENT LIMITED",
"member_id": "MPBPL00188730000030099",
"date_of_joining": "2021-08-18",
"date_of_exit": null,
"last_pf_submitted": "2021-11-13",
"wage_month": "Oct-2021"
},
{
"name": "AJAY SINGH",
"guardian_name": "GOPAL SINGH",
"establishment_name": "TANU ENTERPRISES",
"member_id": "MPBPL14438410000011534",
"date_of_joining": "2020-08-10",
"date_of_exit": null,
"last_pf_submitted": "2021-02-15",
"wage_month": "Jan-2021"
}
]
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}