| 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 |
|---|---|---|
mobileNumber | String | Registered mobile number linked with EPFO records |
documentType | String | Specifies the verification type (EPF UAN Lookup) |
| Field | Description |
|---|---|
ok | Indicates whether the request was successful (true / false) |
message | Status message describing the result of the verification |
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.uans | List of Universal Account Numbers (UANs) associated with the mobile number |
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 mobileNumber: \"9657551465\"\r\n documentType: \"EPF UAN Lookup\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n __typename\r\n ... on EPFUANLookupResult {\r\n request_id\r\n status_code\r\n case_id\r\n uans\r\n }\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"verify": {
"ok": true,
"message": "Verification completed successfully",
"result": {
"__typename": "EPFUANLookupResult",
"request_id": "53bd1490-adae-4fcb-8aec-0559438e1c52",
"status_code": "101",
"case_id": "123456",
"uans": [
"101643984219"
]
}
}
}
}