| 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 |
|---|---|---|
establishmentId | String | Unique EPFO establishment ID |
months | Integer | Number of recent months for which transaction data is required |
documentType | String | Specifies the verification type (EPFO Basic Establishment Search_S) |
| Field | Description |
|---|---|
ok | Indicates whether the request was successful (true / false) |
message | Status message describing the result of the verification |
result.establishment_status | Status of the establishment (e.g., Active/Inactive) |
result.establishment_info.establishment_code | Unique establishment code |
result.establishment_info.name_of_establishment | Name of the establishment |
result.establishment_info.ownership_type | Ownership type of the establishment |
result.establishment_info.pan_status | PAN verification status of the establishment |
result.establishment_info.primary_business_activity | Primary business activity of the establishment |
result.establishment_info.section_applicable | Applicable EPFO section coverage |
result.establishment_info.date_of_setup | Date when the establishment was set up |
result.establishment_info.address | Address of the establishment |
result.establishment_info.city | City where the establishment is located |
result.establishment_info.state | State where the establishment is located |
result.establishment_info.region | EPFO regional office information |
result.establishment_info.zone | EPFO zone information |
result.transactions.monthly_summary[].salary_month | Salary month of contribution |
result.transactions.monthly_summary[].total_amount | Total contribution amount for the month |
result.transactions.monthly_summary[].total_employees | Total number of employees for the month |
result.transactions.monthly_summary[].delay_in_day | Delay in contribution (in days) |
result.transactions.monthly_summary[].is_delay | Indicates whether there was a delay (true / false) |
error.status | Error status code (if applicable) |
error.message | Error message describing the issue |
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 establishmentId: \"NGAUR2879349000\"\r\n documentType: \"EPFO Basic Establishment Search_S\"\r\n months: 2\r\n }\r\n ) {\r\n ok\r\n message\r\n\r\n result {\r\n __typename\r\n\r\n ... on EPFEstablishmentVerificationResult {\r\n establishment_status\r\n\r\n establishment_info {\r\n establishment_code\r\n name_of_establishment\r\n ownership_type\r\n pan_status\r\n primary_business_activity\r\n section_applicable\r\n date_of_setup\r\n address\r\n city\r\n state\r\n region\r\n zone\r\n }\r\n\r\n transactions {\r\n monthly_summary {\r\n salary_month\r\n total_amount\r\n total_employees\r\n delay_in_day\r\n is_delay\r\n }\r\n }\r\n }\r\n }\r\n\r\n error {\r\n status\r\n message\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"verify": {
"ok": true,
"message": "Verification completed successfully",
"result": {
"__typename": "EPFEstablishmentVerificationResult",
"establishment_status": "Active",
"establishment_info": {
"establishment_code": "NGAUR2879349000",
"name_of_establishment": "INDICONNECT PAYTECH PRIVATE LIMITED",
"ownership_type": "Public Ltd Company / Joint Stock Company",
"pan_status": "VERIFIED",
"primary_business_activity": "OTHERS",
"section_applicable": "VOLUNTARY COVERAGE",
"date_of_setup": "19-MAR-2023",
"address": "FL NO2, PL NO 61, MANGALMURTI APART BASAYYE NAGAR",
"city": "Aurangabad",
"state": "MAHARASHTRA",
"region": "MH - NAGPUR",
"zone": "MAHARASHTRA AND CHHATTISGARH"
},
"transactions": {
"monthly_summary": []
}
},
"error": null
}
}
}