Voters Card
Allows merchant to verify information of users using National ID and other identifiers
With our Sierra Leonean Voter’s Card verification endpoint, businesses can quickly and easily validate the authenticity of any customer of Sierra Leonean descent with his/her voter’s card, ensuring that the person presenting the card is who they claim to be.
Using this endpoint involves integrating with our API that allows you to connect to the endpoint and send information about the customer's voters card. The endpoint will then analyze the information and provide a response indicating whether or not the card is valid and belongs to the user.
TEST DATA
search_mode: ID
number: E123456
POST
{{URL}}/identitypass/verification/sl/voters
Request Header
Key | Description |
---|---|
app-id | Your App ID |
x-api-key | Your Secret Key |
Request Body
Key | Description |
---|---|
search_mode | ID or BIO |
number | ID number(if search_mode is ID) |
firstname | first name(If search_mode is BIO) |
lastname | last name(if search_mode is BIO) |
middlename | middlename(if search_mode is BIO) |
dob | Date of Birth(if search_mode is BIO) |
Sample Response
{
"status": true,
"message": "Verification successful",
"response_code": "00",
"data": {
"IdNumber": "E123456",
"CenterCode": "1001",
"Ward": "21",
"Constituency": "38",
"District": "",
"LastName": "DOE",
"OtherNames": "JOHN",
"Sex": "M",
"DateOfBirth": "February 15,2018 ",
"Address": "22 Kamal Street",
"Village": "Makeni",
"Picture": "/9j/4AAQSkZJRgABAQAAAQABAAD/"
}
}
Response Description
Response | Description |
---|---|
status | Indicates that the request was successful. |
message | Contains the message or information related to the request. |
response_code | Represents the response code. |
data | It is a string that contains some encrypted or encoded data related to the verification. |
IdNumber | The unique ID number of the voter. |
CenterCode | The code of the polling center where the voter is registered to vote. |
Ward | The ward in which the voter is registered to vote. |
Constituency | The constituency in which the voter is registered to vote. |
District | The district in which the voter is registered to vote. |
LastName | The last name of the voter. |
OtherNames | The first name(s) of the voter. |
Sex | The gender of the voter (M or F). |
DateOfBirth | The date of birth of the voter. |
Address | The physical address of the voter. |
Village | The village in which the voter resides. |
Picture | The image of the voter's face. |
Updated over 1 year ago