Ghana Card
Verify a customer's identity using their Ghana Card by the National Identification Authority.
{{baseUrl}}/v1/gh/identities/ghana-id/{idNumber}
Path Parameter
Parameter | Type | Description |
---|---|---|
IdNumber * (REQUIRED) | string | Ghana Card Identity Number |
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": 25111555,
"applicant": {
"firstname": "John",
"lastname": "Doe"
},
"summary": {
"ghana_id_check": {
"status": "EXACT_MATCH",
"fieldMatches": {
"firstname": true,
"lastname": true
}
}
},
"status": {
"state": "complete",
"status": "verified"
},
"ghana_id": {
"nationalId": "GHA-123456789-1",
"firstName": "John",
"lastName": "Doe",
"otherName": "Jack",
"gender": "M",
"dateOfBirth": "1990-01-01",
"nationality": "Ghanian",
"dateOfIssue": "1990-01-01",
"dateOfExpiry": "2000-01-01",
"phone": "+233554237337",
"address": "GA-110-2223",
"photo": ""
}
}
Updated 3 months ago