| 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 |
|---|---|---|
dlNo | String | Unique Driving License number issued by the Regional Transport Office |
dob | String | Date of birth of the driving license holder (used for verification) |
documentType | String | Specifies the verification type (Driving License Verification) |
| Field | Description |
|---|---|
ok | Indicates whether the verification was successful (true / false) |
message | Status message describing the verification result |
result.name | Name of the driving license holder |
result.dlNumber | Driving License number associated with the verified record |
result.issueDate | Date on which the driving license was issued |
error | Contains error details if verification fails |
curl --location --request POST 'https://api.staging.indiconnect.in/idverifygr/verification' \
--header 'myAppId: verification' \
--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 dlNo: \"MH2520160010567\",\r\n documentType:\"Driving License Verification\",\r\n dob:\"18-12-1994\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n ... on DrivingLicenseResult {\r\n name\r\n dlNumber\r\n issueDate\r\n }\r\n }\r\n error {\r\n status\r\n message\r\n decryptedError\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"verify": {
"ok": true,
"message": "Verification completed successfully",
"result": {
"name": "TUKARAM WAGHMARE",
"dlNumber": "MH2520160010567",
"issueDate": "15-11-2016"
},
"error": null
}
}
}