Driver’s License

Verify a customer’s identity using their Driver’s License Number through the Federal Road Safety Corps (FRSC). This service validates the provided license number along with the customer’s first and last name, returning detailed information associated with the driver’s license record.


275

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

Email

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