Photo ID Verification
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 using your product is the account owner at the validated bank.
Note that; Confidence value is used to verify match and a confidence value from 60 and above shows a successful match else a mismatch.
To Verify BVN with Selfie Image;
{{baseUrl}}/api/v1/kyc/photoid/verify
POST Verify BVN with Selfie
POST Parameter | Type | Description |
---|---|---|
last_name | string | |
first_name | string | |
selfie_image | string | Base64 value of the selfie image |
photoid_image | string | Base64 value of the photoId image |
NB : Confidence Values ranges from 0% to 100 %
0% - 90% denote match value is false
90% -100% denote match value is true
{
"entity": {
"selfie": {
"confidence_value": 0,
"match": false
},
"last_name": {
"match": false,
"last_name": "saliu",
"confidence_value": 80
},
"first_name": {
"match": true,
"first_name": "moshood",
"confidence_value": 100
}
}
}
curl -L -X POST '{{baseUrl}}/api/v1/kyc/bvn/verify' \
-H 'Content-Type: application/json' \
-H 'Authorization: SECRET_KEY'
Updated about 1 month ago