Voters Card
This endpoint allows you to verify voter's card number
This endpoint is to provide a means for verifying the authenticity of a voter's card number, which is a unique identifier assigned to each registered voter. The process of verifying a voter's card number typically involves comparing it against a database of registered voters maintained by the election commission.
This database contains information such as the voter's name, address, and other identifying details, which are used to confirm that the card number is indeed associated with a valid voter.
TEST DATA
number: 987f545AJ67890
POST
{{URL}}/identitypass/verification/voters_card
Header
Key | Description |
---|---|
app-id | Your App ID |
x-api-key | Your Secret Key |
Body
Key | Description |
---|---|
number | Voters card number |
Responses
{
"status": true,
"detail": "Verification Successful",
"response_code": "00",
"data": {
"fullName": " Roe Moga Eah ",
"gender": "F",
"occupation": "STUDENT",
"photo": "/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR",
"state": "LAGOS",
"lga": "AJMI/IFDUN",
"address": "1 MBA STREET, AJEROMI/IFELODUN, LAGOS",
"vin": "90F5B1103A295500632",
"country": "NG",
"phone_number": "",
"pollingUnit": "",
"timeOfRegistration": "",
"date_of_birth": "",
"registrationAreaWard": "",
"pollingUnitCode": ""
},
"verification": {
"status": "VERIFIED",
"reference": "1d362a2-e457-4595-aefd-c427e90a1f"
},
"widget_info": {},
"session": {},
"endpoint_name": "Voters card"
}
Response Description
Response | Description |
---|---|
status | Indicates that the request was successful. |
detail | This field indicates the detail of the response. |
response_code | Represents the response code. |
vc_data | An array that contains the following data about a voter. |
vin | The voter's identification number (VIN). |
fullName | The voter's full name. |
first_name | The voter's first name. |
last_name | The voter's last name. |
pollingUnit | The name of the voter's polling unit. |
date_of_birth | The voter's date of birth. |
gender | The voter's gender. |
state | The voter's state of residence. |
lga | The voter's local government area. |
registrationAreaWard | The voter's registration area ward. |
pollingUnitCode | The voter's polling unit code. |
identity_status | The voter's identity status, such as "Identity Matched" or "Identity Not Matched". |
occupation | The voter's occupation. |
timeOfRegistration | The date and time at which the voter registered to vote. |
verification | It holds additional details about the verification process. |
status | Indicates the status of the verification. |
reference | It is a string representing a unique reference or identifier associated with the verification process. |
Updated about 1 month ago