NIN (with Phone Number)

Verify a customer's identity using the registered phone number linked to their National Identity Number (NIN), through the National Identity Management Commission (NIMC).

To verify NIN with Phone Number

{{baseUrl}}/v1/ng/identities/nin-phone/{idNumber}

Path Parameter

ParametersTypeDescription
idNumber : Phone Number
(REQUIRED)
string Phone number

Request Body

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

This endpoint will return all bio-data information captured, up to 46 data sets. To conduct an actual test

Response Sample

{
    "id": 1**93,
    "applicant": {
        "firstname": "Bunch",
        "lastname": "Dillon"
    },
    "summary": {
        "nin_check": {
            "status": "EXACT_MATCH",
            "fieldMatches": {
                "firstname": true,
                "lastname": true
            }
        }
    },
    "status": {
        "state": "complete",
        "status": "verified"
    },
    "nin": {
        "nin": "63184876213",
        "firstname": "Bunch",
        "lastname": "Dillon",
        "middlename": "John",
        "phone": "08000000000", 
        "gender": "m",
        "birthdate": "06-01-1974",
        "photo":"base 64 encoded",
        "address": "5, Adeniyi Jones, Ikeja, Lagos"
   }
}