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.

275

To verify a Driver's License

{{baseUrl}}/v1/ng/identities/driver-license/{idNumber}

Path Parameter

ParameterTypeDescription
idNumber
(REQUIRED)
stringDriver License Number

Request Body

POST ParameterTypeDescription
fistname
(REQUIRED)
stringFirst Name
lastname
(REQUIRED)
stringLast Name
dob
(OPTIONAL)
dateStringDate Of Birth(YYYY-MM-DD)
phone
(OPTIONAL)
stringPhone Number
email
(OPTIONAL)
stringEmail
gender
(OPTIONAL)
stringGender

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"
    }
}