| Header | Type | Required | Description |
|---|---|---|---|
| myAppId | String | Yes | Application identifier provided by Indiconnect. |
| service-key | String | Yes | Service key used to access the verification service. |
| Authorization | String | Yes | API authentication credentials in the format x-api-access access_key:secret_key. |
| Content-Type | String | Yes | Request content type. Must be application/json. |
Shop Verification.| Field | Description |
|---|---|
| entity_name | Name of the registered establishment. |
| owner_name | Name of the owner or proprietor of the establishment. |
| registration_date | Date when the Shop & Establishment certificate was issued. |
| nature_of_business | Type or category of business activity. |
| total_workers | Total number of workers registered under the establishment. |
| address | Registered address of the establishment. |
curl --location --request POST 'https://api.staging.indiconnect.in/idverifygr/verification' \
--header 'myAppId: verification_business_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 businessVerification(\r\n input: {\r\n Registration_No: \"2017000456\" # // Shop / Establishment Registration No\r\n documentType: \"Shop Verification\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n __typename\r\n ... on ShopVerificationResult {\r\n entity_name\r\n owner_name\r\n registration_date\r\n nature_of_business\r\n total_workers\r\n address\r\n }\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"businessVerification": {
"ok": true,
"message": "Business verification completed successfully",
"result": {
"__typename": "ShopVerificationResult",
"entity_name": "Shiva Enterprises",
"owner_name": "Ramanand",
"registration_date": "2/1/2017",
"nature_of_business": "Others",
"total_workers": "5",
"address": "N-18/242, L-block Jj Colony Wazirpur Delhi, Delhi. PIN-110052"
}
}
}
}