Voter’s Card

Verify a customer's identity using their Voter Identification Number (VIN) through the Independent National Electoral Commission (INEC).

282

To verify a voter's card

{{baseUrl}}/v1/ng/identities/vin/{vin}

Path Parameter

ParametersTypeDescription
vin
(REQUIRED)
stringVoter Identification Number

Request Body

ParametersTypeDescription
firstname
(REQUIRED)
stringFirst Name
lastname
(REQUIRED)
stringLast Name
dob
(REQUIRED)
datestringDate Of Birth(YYYY-MM-DD)
gender
(OPTIONAL)
stringGender

This endpoint will return the bio-data information captured.To conduct a test

Response Sample

{
    "id": 191,
    "applicant": {
        "firstname": "John",
        "lastname": "Doe",
        "dob": "1992-06-10"
    },
    "summary": {
        "voters_card_check": {
            "status": "EXACT_MATCH",
            "fieldMatches": {
                "firstname": true,
                "lastname": true,
                "dob": false
            }
        }
    },
    "status": {
        "state": "complete",
        "status": "verified"
    },
    "voters_card": {
        "fullname":"John Doe",
        "vin": "90F5**********72",
        "gender": "male",
        "occupation": "STUDENT",
        "pollingUnitCode": "12/*****/011",
        "firstName": "John",
        "lastName": "Doe"
    }
}