Old National ID Verification
Old National ID Verification
Confirms a legacy-format Ivorian national ID number and returns the holder's record.
POST /api/v1/id-verifications/identity/ci/old-national-id
Authenticate with your API key (x-api-key) or a bearer token.
Requires the KYC_CI_VERIFY and KYC_RESULT_VIEW permissions.
Sending validations.data also requires KYC_DATA_VALIDATE; sending validations.selfie.image also requires KYC_IMAGE_COMPARE.
Request body
| Name | Type | Description |
|---|---|---|
id* | String | The document number. |
isSubjectConsent* | Boolean | Confirms the subject consented to the check. Must be true. Rejected before the provider is called, so a false costs you nothing. |
validations | Object | Optional. Details to compare against the record we find. |
validations.data.firstName | String | First name to compare. |
validations.data.lastName | String | Last name to compare. |
validations.data.dateOfBirth | String | Date of birth to compare, YYYY-MM-DD. |
Fields marked * are required.
Example
Request
{
"id": "C0117721704",
"isSubjectConsent": true
}
Response
{
"status": 200,
"data": {
"id": "11cde68b-7829-4fe3-bf4e-7e634938b4fc",
"fullName": "LONZO HENOCH ANGE MICHAEL KOFFI",
"documentType": "CI_OLD_NATIONAL_ID",
"documentCountry": "CI",
"documentId": null,
"requestAt": "2026-09-04T06:54:35.722Z",
"requestUpdatedAt": "2026-09-04T07:36:32.091Z",
"requestedBy": {
"id": "dcd1e472-2be7-41b3-b812-cdec840225a0",
"firstName": "sylvernus",
"lastName": "akubo"
},
"type": "ciOldNationalId",
"email": "",
"image": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAQEB\u2026",
"gender": "Male",
"mobile": "",
"reason": null,
"status": "found",
"country": "CI",
"idNumber": "C0117721704",
"lastName": "KOFFI",
"metadata": {},
"checkType": "ci.old-national-id",
"firstName": "LONZO HENOCH ANGE MICHAEL",
"isConsent": true,
"issuedDate": "2009-09-29",
"middleName": "",
"dateOfBirth": "1999-05-26",
"expiredDate": "2029-09-29",
"nationality": null,
"validations": null,
"dataValidation": false,
"fatherLastName": "KOFFI",
"identityNumber": "C0117721704",
"motherLastName": "TOUKOURA",
"fatherFirstName": "KOUADIO LAMBERT",
"imageValidation": false,
"motherFirstName": "PIERRE ALICE",
"selfieValidation": false,
"fatherDateOfBirth": "1965-02-27",
"motherDateOfBirth": "1902-02-27",
"allValidationPassed": true
},
"message": "Successfull!",
"code": "info"
}