Driver’s License
Verify a customer's identity using their Driver's License Number through the Federal Road Safety Corp. (FRSC).
The service accepts the Driver's License Number, first name and last name of the customer as inputs and returns detailed information on the driver's license verification.
To verify a Driver's License
{{baseUrl}}/v1/ng/identities/driver-license/{idNumber}
Path Parameter
Parameter | Type | Description |
---|---|---|
idNumber (REQUIRED) | string | Driver License Number |
Request Body
POST Parameter | Type | Description |
---|---|---|
fistname (REQUIRED) | string | First Name |
lastname (REQUIRED) | string | Last Name |
dob (OPTIONAL) | dateString | Date Of Birth(YYYY-MM-DD) |
phone (OPTIONAL) | string | Phone Number |
email (OPTIONAL) | string | |
gender (OPTIONAL) | string | Gender |
This endpoint will return all bio-data information captured, including the issue and expiry data of the license.To conduct a test
Response Sample
{
"id": 1603,
"applicant": {
"firstname": "Dillon",
"lastname": "Bunch"
},
"summary": {
"drivers_license_check": {
"status": "EXACT_MATCH",
"fieldMatches": {
"firstname": true,
"lastname": true
}
}
},
"status": {
"state": "complete",
"status": "verified"
},
"drivers_license": {
"driversLicense": "63184876213",
"firstname": "Dillon",
"lastname": "Bunch",
"birthdate": "17-08-1976",
"photo": "/9j/4AAQSkZJRgABAg*******/wCpiNUFoooEf//Z",
"issued_date": "20-09-2018",
"expiry_date": "17-08-2021",
"state_of_issue": "FCT",
"gender": "Male",
"message": "Success"
}
}
Updated about 1 year ago