Voter’s Card
Verify a customer's identity using their Voter Identification Number (VIN) through the Independent National Electoral Commission (INEC).
To verify a voter's card
{{baseUrl}}/v1/ng/identities/vin/{vin}
Path Parameter
Parameters | Type | Description |
---|---|---|
vin (REQUIRED) | string | Voter Identification Number |
Request Body
Parameters | Type | Description |
---|---|---|
firstname (REQUIRED) | string | First Name |
lastname (REQUIRED) | string | Last Name |
dob (REQUIRED) | datestring | Date Of Birth(YYYY-MM-DD) |
gender (OPTIONAL) | string | Gender |
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"
}
}
Updated over 1 year ago