Driving Licence
● LiveVerify a Driving Licence in real time.
POST
● Live/v1/verify/driving-licenseVerify Driving Licence
Validates and verifies a Driving Licence. Requires the `verification.dl.read` scope on the API key. Metered as `dl.verify` after a successful upstream response.
Required scope: verification.dl.read
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| Authorization | header | Yes | Bearer <api-key> (e.g. sk_test_... in sandbox, sk_live_... in production). The x-api-key header is also accepted. |
| dlNumber | string | Yes | Driving licence number. |
| dob | string | Yes | Date of birth (YYYY-MM-DD). |
Example request
{
"dlNumber": "MH1420110012345",
"dob": "1990-01-01"
}Example response
{
"status": "success",
"verified": true,
"data": {
"...": "provider-specific verified fields"
}
}Input format is validated with class-validator before the request ever leaves stampmitra-b2b-platform.