Age Identity and Verification allows you to confirm and ascertain information summitted by your end users.

With this endpoint, Dojah can help you verify first name, middle name by simply adding it to the request body

Information Required; Phone Number OR Account Number OR BVN

Request

[GET]
{{baseUrl}}/api/v1/kyc/age_verification

Query parameter

ParameterTypeDescriptionRequired
mode requiredstringphone_number ,account_number or bvnrequired
strictbooldefault is falseoptional
first_namestringFirst namerequired
last_namestringLast namerequired
dobstringDate of Birthoptional
bvnstringInclude BVN if mode is selectedrequired
account_numberstringInclude if account_number mode is selectedoptional
bank_codestringInclude if account_number mode is selectedoptional
phone_numberstringInclude if phone_number mode is selectedoptional

Response

Response
{
  "entity": {
    "first_name": "ADEOLA",
    "last_name": "SEMIU",
    "date_of_birth": "1993-06-10",
    "verification": true
  }
}