Verify BVN with Selfie Image
Lookup and Verify Users BVN with their Selfie Image.
To ensure that your customer is who they say they are, you can allow them take a selfie photo which you can pass on to the Dojah for verification process
This helps to significantly reduce the possibility of fraud by confirming the person inputting the BVN is who they say they really are
To Verify BVN with Selfie Image;
{{baseUrl}}/api/v1/kyc/bvn/verify
POST Verify BVN with Selfie
POST Parameter | Type | Description |
---|---|---|
selfieimage _REQUIRED | string | Base64 value of the selfie image NB: Kindly truncate data:image/jpeg;base64, from the selfie_image object and pass only the buffer starting with /9. |
bvn REQUIRED | string | A Valid BVN Number |
NB : Confidence Values ranges from 0% to 100 %
0% - 90% denote match value is false
90% -100% denote match value is true
{
"entity": {
"bvn": "2245***7919",
"first_name": "JOSHUA",
"last_name": "ISAAC",
"middle_name": "THOMPSONBROWN",
"date_of_birth": "28-Jun-2000",
"gender": "Male",
"image": "/9j/4AAQScXJSgBBAgAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwg...",
"phone_number1": "0708***0116",
"phone_number2": "",
"selfie_verification": {
"confidence_value": 99.81217956542969,
"match": true
}
}
}
Updated 4 minutes ago