| 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 |
|---|---|---|
CIN_Number | String | Valid 21-character Corporate Identification Number (CIN) of the company or LLP |
documentType | String | Specifies the verification type (DIN Verification) |
| 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 service |
result.directors[].din | Director Identification Number (DIN) |
result.directors[].full_name | Full name of the director or partner |
result.directors[].designation | Designation (e.g., Director, Partner) |
result.directors[].date_of_appointment | Date of appointment of the director/partner |
result.directors[].dsc_expiry_date | Digital Signature Certificate (DSC) expiry date (if available) |
result.directors[].dsc_registered_status | Status indicating whether DSC is registered |
result.directors[].address | Registered address of the director or partner |
error | Contains error details if the verification fails |
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 CIN_Number: \"U62099MH2023PTC399289\" #CIN must be a valid 21 character Corporate Identification Number.\r\n documentType: \"DIN Verification\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n __typename\r\n ... on DINVerificationResult {\r\n request_id\r\n status_code\r\n directors {\r\n din\r\n full_name\r\n designation\r\n date_of_appointment\r\n dsc_expiry_date\r\n dsc_registered_status\r\n address\r\n }\r\n }\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"businessVerification": {
"ok": true,
"message": "Business verification completed successfully",
"result": {
"__typename": "DINVerificationResult",
"request_id": "f3a958be-b7e2-4cb7-a0dd-ac756126504e",
"status_code": "101",
"directors": [
{
"din": "07521729",
"full_name": "AMAR RAMCHANDRA KURUND",
"designation": "DIRECTOR",
"date_of_appointment": "21/03/2023",
"dsc_expiry_date": null,
"dsc_registered_status": "No",
"address": "PATIL GALLI, KAIJ ,BEED ,Maharashtra ,431123 ,India"
},
{
"din": "08339567",
"full_name": "AMIT PURUSHOTTAM TIWARI",
"designation": "DIRECTOR",
"date_of_appointment": "19/03/2023",
"dsc_expiry_date": null,
"dsc_registered_status": "No",
"address": "B.NO. 3, NEAR SAKAL HOSPITAL, ,UDAY NAGAR SAVEDI, ,AHMEDNAGAR ,Maharashtra ,414003 ,India"
},
{
"din": "07726933",
"full_name": "AJIT ASHOK DHAPATE",
"designation": "DIRECTOR",
"date_of_appointment": "25/08/2025",
"dsc_expiry_date": null,
"dsc_registered_status": "No",
"address": "S/O ASKOK DHAPATE, AT POST- BHATUMBA, ,CHANDAN SAWARGAON, TALUKA- KAIJ ,BEED ,Maharashtra ,431123 ,India"
}
]
}
}
}
}