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 |
---|---|---|---|
mobile_number | String | Conditional* | Mobile number of the individual |
pan_number | String | Conditional* | PAN number of the individual |
uan_number | String | Conditional* | UAN (Universal Account Number) of the individual |
employer_name | String | No | Name of the employer for additional verification |
employee_name | String | No | Name of the employee for additional verification |
{
"uan_number": "101669824011"
}
Parameter | Type | Description |
---|---|---|
data | Object | Contains all the employment-related information |
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 |
---|---|---|
client_id | String | Unique identifier for the client |
uan | String | UAN number of the individual |
month_history | Array of Objects | Monthly employment status history |
employment_details | Object | Detailed employment information |
epfo_details | Object | EPFO-related information |
Parameter | Type | Description |
---|---|---|
month_year | String | Month and year of the employment status (e.g., "MAY-21") |
status | Boolean | Employment status for that month (true = employed) |
Parameter | Type | Description |
---|---|---|
member_id | String | Member ID associated with EPFO |
doe_epf | String | Date of exit from EPF (format: YYYY-MM-DD) |
leave_reason | String | Reason for leaving employment |
doj_epf | String | Date of joining EPF (format: YYYY-MM-DD) |
name | String | Name of the individual |
company_name | String | Name of the company where the individual was employed |
Parameter | Type | Description |
---|---|---|
employee_name_matching_score | String | Score indicating how well the provided employee name matches records |
employer_name_matching_score | String | Score indicating how well the provided employer name matches records |
establishment_id | String | Unique identifier for the establishment |
establishment_name | String | Name of the establishment |
establishment_info | Object | Detailed information about the establishment |
Parameter | Type | Description |
---|---|---|
address | String | Complete address of the establishment |
city | String | City where the establishment is located |
establishment_name | String | Name of the establishment |
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 | Unique identifier for the establishment |
less_info | Boolean | Indicates if limited information is available |
{
"data": {
"client_id": "current_employment_pan_mobile_ptDZogxvvsFxdSwNaujo",
"uan": "101559824010",
"employment_details": {
"member_id": "KDMAL00178080000313123",
"doe_epf": "2021-05-17",
"leave_reason": "CESSATION (SHORT SERVICE) - Any other reason",
"doj_epf": "2021-05-17",
"name": "VISHAL SINGH RATHORE",
"company_name": "I PROCESS SERVICES (INDIA) PVT. LTD."
},
"month_history": [
{
"month_year": "MAY-21",
"status": true
}
],
"epfo_details": {
"employee_name_matching_score": "0",
"employer_name_matching_score": "0",
"establishment_id": "KDMAL0017808000",
"establishment_name": "I PROCESS SERVICES (INDIA) PVT. LTD.",
"establishment_info": {
"address": "UNIT NO 602, 6TH FLOOR CENTRE POINT J B NAGAR ANDHERI EAST MUMBAI ANDHERI KURLA ROAD ANDHERI EAST MAHARASHTRA",
"city": "ANDHERI KURLA ROAD ANDHERI EAST",
"establishment_name": "I PROCESS SERVICES (INDIA) PVT. LTD.",
"district": "ANDHERI KURLA ROAD ANDHERI EAST",
"state": "MAHARASHTRA",
"region": "KD",
"establishment_id": "KDMAL0017808000",
"less_info": false
}
}
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
{
"status_code": 400,
"success": false,
"message": "Please provide at least one of mobile_number, pan_number, or uan_number",
"message_code": "invalid_input"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/employment/current-employment-pan-mobile' \
--header 'Content-Type: application/json' \
--data-raw '{
"uan_number": "101669824011"
}'
{
"data": {
"client_id": "current_employment_pan_mobile_ptDZogxvvsFxdSwNaujo",
"uan": "101559824010",
"employment_details": {
"member_id": "KDMAL00178080000313123",
"doe_epf": "2021-05-17",
"leave_reason": "CESSATION (SHORT SERVICE) - Any other reason",
"doj_epf": "2021-05-17",
"name": "VISHAL SINGH RATHORE",
"company_name": "I PROCESS SERVICES (INDIA) PVT. LTD."
},
"month_history": [
{
"month_year": "MAY-21",
"status": true
}
],
"epfo_details": {
"employee_name_matching_score": "0",
"employer_name_matching_score": "0",
"establishment_id": "KDMAL0017808000",
"establishment_name": "I PROCESS SERVICES (INDIA) PVT. LTD.",
"establishment_info": {
"address": "UNIT NO 602, 6TH FLOOR CENTRE POINT J B NAGAR ANDHERI EAST MUMBAI ANDHERI KURLA ROAD ANDHERI EAST MAHARASHTRA",
"city": "ANDHERI KURLA ROAD ANDHERI EAST",
"establishment_name": "I PROCESS SERVICES (INDIA) PVT. LTD.",
"district": "ANDHERI KURLA ROAD ANDHERI EAST",
"state": "MAHARASHTRA",
"region": "KD",
"establishment_id": "KDMAL0017808000",
"less_info": false
}
}
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}