Kenya Alien Card
Verify a customer's identity using their Kenya Alien Card
{{baseUrl}}/v1/ke/identities/alien-card/{idNumber}
Path Parameter
Parameter | Type | Description |
---|---|---|
IdNumber * (REQUIRED) | string | Kenya Alien Card |
Request Body
POST Parameter | Type | Description |
---|---|---|
firstname (REQUIRED) | string | First Name |
lastname (REQUIRED) | string | Last Name |
middlename (OPTIONAL) | string | Middle Name |
dob (OPTIONAL) | dateString | Date Of Birth (YYYY-MM-DD) |
phone (OPTIONAL) | string | Phone Number |
email (OPTIONAL) | string | Email Address |
gender (OPTIONAL) | string | Gender |
This endpoint will return all bio-data information captured. To conduct an actual test
Response Sample
{
"id": 1**3,
"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": "/9j/4AAQSk******/wCpiNUFoooEf//Z",
"address": "5, Adeniyi Jones, Ikeja, Lagos"
}
}
Updated over 1 year ago