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 format) |
Content-Type | Yes | application/json |
Parameter | Type | Required | Description |
---|---|---|---|
pan_number | String | Yes | PAN Number of the individual whose employment details are being requested |
{
"pan_number": "EKRPR1234F"
}
Parameter | Type | Description |
---|---|---|
data | Object | Contains the response data |
data.client_id | String | Unique Client ID for the request |
data.pan_number | String | PAN number of the individual |
data.uan | String | Universal Account Number (UAN) of the individual |
data.employment_details | Object | Contains detailed employment 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 client ID for the employment details |
uan | String | Universal Account Number (UAN) of the individual |
is_elig | String | Eligibility status of the individual (Y/N) |
proc_status | String | Process status indicator |
doe_eps | String | Date of exit from EPS in YYYY-MM-DD format |
aadhaar_number | String | Masked Aadhaar number of the individual |
mobile_number | String | Mobile number of the individual |
member_id | String | Member ID associated with EPFO |
doe_epf | String | Date of exit from EPF in YYYY-MM-DD format |
status | String | Verification status |
email_id | String | Email address of the individual |
dob | String | Date of birth of the individual in YYYY-MM-DD format |
doj_eps | String | Date of joining EPS in YYYY-MM-DD format |
pan_number | String | PAN number of the individual |
gender | String | Gender of the individual (M/F) |
leave_reason | String | Reason for leaving employment |
doj_epf | String | Date of joining EPF in YYYY-MM-DD format |
bank_ifsc | String | IFSC code of the individual's bank |
back_account_no | String | Bank account number of the individual |
bank_details | String | Details of the bank including name and branch |
name | String | Name of the individual |
father_or_husband_name | String | Name of the individual's father or husband |
father_or_husband | String | Relationship indicator (F for Father, H for Husband) |
leave_reason_code | String | Code corresponding to the leave reason |
{
"data": {
"client_id": "pan_to_current_employment_uIDalttFsmBdsLRizYQE",
"pan_number": "EKRPR1234F",
"uan": "101669821234",
"employment_details": {
"client_id": "epfo_details_advanced_RHNaLwspBeaJwXHJwikV",
"uan": "101669821234",
"is_elig": "Y",
"proc_status": "0",
"doe_eps": "2021-05-17",
"aadhaar_number": "XXXXXXXX5514",
"mobile_number": "8079012345",
"member_id": "KDMAL00478080000312345",
"doe_epf": "2021-05-17",
"status": "V",
"email_id": "vishalrathore@gmail.com",
"dob": "2001-07-25",
"doj_eps": "2021-03-15",
"pan_number": "EKRPR1234F",
"gender": "M",
"leave_reason": "CESSATION (SHORT SERVICE) - Any other reason",
"doj_epf": "2021-05-17",
"bank_ifsc": "UTIB0002878",
"back_account_no": "920010012345678",
"bank_details": "AXIS BANK,JAGATPURA JAIPUR",
"name": "VISHAL RATHORE",
"father_or_husband_name": "RAJENDRA SINGH",
"father_or_husband": "F",
"leave_reason_code": "5"
}
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
{
"data": null,
"status_code": 400,
"success": false,
"message": "Invalid PAN number format",
"message_code": "invalid_pan_format"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/employment/pan-to-current-employment' \
--header 'Content-Type: application/json' \
--data-raw '{
"pan_number": "EKRPR1234F"
}'
{
"data": {
"client_id": "pan_to_current_employment_uIDalttFsmBdsLRizYQE",
"pan_number": "EKRPR1234F",
"uan": "101669821234",
"employment_details": {
"client_id": "epfo_details_advanced_RHNaLwspBeaJwXHJwikV",
"uan": "101669821234",
"is_elig": "Y",
"proc_status": "0",
"doe_eps": "2021-05-17",
"aadhaar_number": "XXXXXXXX5514",
"mobile_number": "8079012345",
"member_id": "KDMAL00478080000312345",
"doe_epf": "2021-05-17",
"status": "V",
"email_id": "vishalrathore@gmail.com",
"dob": "2001-07-25",
"doj_eps": "2021-03-15",
"pan_number": "EKRPR1234F",
"gender": "M",
"leave_reason": "CESSATION (SHORT SERVICE) - Any other reason",
"doj_epf": "2021-05-17",
"bank_ifsc": "UTIB0002878",
"back_account_no": "920010012345678",
"bank_details": "AXIS BANK,JAGATPURA JAIPUR",
"name": "VISHAL RATHORE",
"father_or_husband_name": "RAJENDRA SINGH",
"father_or_husband": "F",
"leave_reason_code": "5"
}
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}