| Header | Description |
|---|---|
myAppId | Application identifier used for service authentication |
service-key | Unique service key provided for accessing the verification service |
Authorization | API authorization credentials for secure access |
Content-Type | Specifies the request payload format (application/json) |
| Parameter | Type | Description |
|---|---|---|
uan | String | Universal Account Number (UAN) issued by EPFO |
documentType | String | Specifies the verification type (EPF UAN Verification) |
| Field | Description |
|---|---|
ok | Indicates whether the verification was successful (true / false) |
message | Status message describing the verification result |
result.request_id | Unique request identifier for tracking |
result.status_code | Status code returned by the system |
result.case_id | Case ID for internal reference |
result.personal_details.name | Name of the UAN holder |
result.personal_details.father_or_husband_name | Fatherās or spouseās name |
result.personal_details.aadhaar_verification_status | Aadhaar verification status |
result.personal_details.bank_account_status | Linked bank account verification status |
result.personal_details.pan_verification_status | PAN verification status |
result.personal_details.contact_no | Registered contact number |
result.employers[].establishment_id | EPFO establishment ID |
result.employers[].establishment_name | Name of the employer |
result.employers[].member_id | Member ID associated with the UAN |
result.employers[].start_month_year | Employment start date |
result.employers[].last_month_year | Employment end date |
result.employers[].exit_reason | Reason for exit (if available) |
result.employers[].status | Status of employment record |
result.employers[].address | Employer address details (city, state, pincode, district) |
result.summary.minimum_work_experience_in_months | Total minimum work experience in months |
result.summary.last_employer.employer_name | Name of the last employer |
result.summary.last_employer.start_month_year | Start date with last employer |
result.summary.last_employer.last_month_year | End date with last employer |
result.summary.last_employer.vintage_in_months | Duration with last employer (in months) |
result.remark | Additional remarks or notes (if any) |
error | Contains error details if verification fails |
curl --location --request POST 'https://api.staging.indiconnect.in/idverifygr/verification' \
--header 'myAppId: verification_v2_2_app' \
--header 'service-key: sk_test_a9944179bc598f06' \
--header 'Authorization: x-api-access indc_test_a41eaf2a175f3b13:ac_test_bf7117f6da6c6285' \
--header 'Content-Type: application/json' \
--data-raw '{
"query": "mutation {\r\n verify(\r\n input: {\r\n uan: \"101643984219\"\r\n documentType: \"EPF UAN Verification\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n __typename\r\n ... on EPFUANVerificationResult {\r\n request_id\r\n status_code\r\n case_id\r\n\r\n personal_details {\r\n name\r\n father_or_husband_name\r\n aadhaar_verification_status\r\n bank_account_status\r\n pan_verification_status\r\n contact_no\r\n }\r\n\r\n employers {\r\n establishment_id\r\n establishment_name\r\n member_id\r\n start_month_year\r\n last_month_year\r\n exit_reason\r\n status\r\n address {\r\n city\r\n state\r\n pincode\r\n district\r\n address\r\n }\r\n }\r\n\r\n summary {\r\n minimum_work_experience_in_months\r\n last_employer {\r\n employer_name\r\n start_month_year\r\n last_month_year\r\n vintage_in_months\r\n }\r\n }\r\n\r\n remark\r\n }\r\n }\r\n }\r\n}",
"variables": {}
}'{
"data": {
"verify": {
"ok": true,
"message": "Verification completed successfully",
"result": {
"__typename": "EPFUANVerificationResult",
"request_id": "472696e5-40f4-4232-8ab1-5af63678a4d7",
"status_code": 101,
"case_id": "123456",
"personal_details": {
"name": "TUKARAM GOROBA WAGHMARE",
"father_or_husband_name": "GOROBA WAGHMARE",
"aadhaar_verification_status": null,
"bank_account_status": null,
"pan_verification_status": null,
"contact_no": null
},
"employers": [
{
"establishment_id": "NGAUR2879349000",
"establishment_name": "INDICONNECT PAYTECH PRIVATE LIMITED",
"member_id": "NGAUR28793490000010040",
"start_month_year": "09-2024",
"last_month_year": "01-2026",
"exit_reason": null,
"status": "EMPLOYMENT_PERIOD_FOUND",
"address": {
"city": "Aurangabad",
"state": "MAHARASHTRA",
"pincode": "431001",
"district": "AURANGABAD",
"address": "FL NO2, PL NO 61, MANGALMURTI APART BASAYYE NAGAR"
}
},
{
"establishment_id": "THTHA2524759000",
"establishment_name": "DIGITALFLAKE SOLUTIONS PRIVATE LIMITED",
"member_id": "THTHA25247590000010002",
"start_month_year": "05-2022",
"last_month_year": null,
"exit_reason": null,
"status": "EMPLOYMENT_PERIOD_COULD_NOT_BE_IDENTIFIED",
"address": {
"city": "MUMBAI",
"state": "MAHARASHTRA",
"pincode": "400072",
"district": "MUMBAI CITY",
"address": "J/1403, 14th FLOOR, RAHEJA VISTAS CHANDIVALI, POWAI, MUMBAI 400072"
}
},
{
"establishment_id": "KDMAL0213737000",
"establishment_name": "CORE INTEGRA CONSULTING SERVICES LIMITED",
"member_id": "KDMAL02137370000059070",
"start_month_year": "12-2020",
"last_month_year": null,
"exit_reason": null,
"status": "EMPLOYMENT_PERIOD_COULD_NOT_BE_IDENTIFIED",
"address": {
"city": "ANDHERI EAST",
"state": "MAHARASHTRA",
"pincode": "400093",
"district": "MUMBAI SUBURBAN",
"address": "1ST FLOOR VINMAR HOUSE PLOT NOA/41, ROAD NO 2 MIDC OPP MAROL BUS DEPO"
}
}
],
"summary": {
"minimum_work_experience_in_months": 16,
"last_employer": {
"employer_name": "INDICONNECT PAYTECH PRIVATE LIMITED",
"start_month_year": "09-2024",
"last_month_year": "01-2026",
"vintage_in_months": 16
}
},
"remark": null
}
}
}
}