| 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 |
|---|---|---|
DIN_Number | String | Valid 8-digit Director Identification Number (DIN) |
documentType | String | Specifies the verification type (DIN Director Details) |
| Field | Description |
|---|---|
ok | Indicates whether the request was successful (true / false) |
message | Status message describing the result of the verification |
result.name | Full name of the director |
result.din | Director Identification Number (DIN) |
result.father_name | Father’s name of the director |
result.dob | Date of birth of the director |
result.designation | Designation of the director (if available) |
result.date_of_appointment | Date of appointment (if available) |
result.dsc_registered | Indicates if DSC is registered |
result.dsc_expiry_date | DSC expiry date (if available) |
result.no_of_companies | Number of companies associated with the director |
result.companies[].cin | Corporate Identification Number (CIN) of associated companies |
result.companies[].company_name | Name of associated companies |
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 verify(\r\n input: {\r\n DIN_Number: \"03625478\" # Director Identification Number\r\n #It is a unique 8-digit number assigned to a person who wants to become a director in an Indian company.\r\n documentType: \"DIN Director Details\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n __typename\r\n ... on DINDirectorDetailsResult {\r\n name\r\n din\r\n father_name\r\n dob\r\n designation\r\n date_of_appointment\r\n dsc_registered\r\n dsc_expiry_date\r\n no_of_companies\r\n companies {\r\n cin\r\n company_name\r\n }\r\n }\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"verify": {
"ok": true,
"message": "Verification completed successfully",
"result": {
"__typename": "DINDirectorDetailsResult",
"name": "SUBRAMANIYAN PRIYA .",
"din": "03625478",
"father_name": "*****PIAH SUBRAMANIYAN",
"dob": "14/08/1979",
"designation": null,
"date_of_appointment": null,
"dsc_registered": null,
"dsc_expiry_date": null,
"no_of_companies": "1",
"companies": [
{
"cin": "U51109TN2011PTC082496",
"company_name": "SEEDS IMPEX PRIVATE LIMITED"
}
]
}
}
}
}