Face ID Verification
# Introduction
This verifies the authenticity of the ID holder by matching the selfie to the national ID photo.
# Request Parameters
| Field | Description | Type |
|---|---|---|
| id_number | ID Number of the person being verified | String |
| phone_number | Phone number of the person being verified | String |
| full_name | Full name of the person being verified | String |
| organization | Organization remote code | String |
| selfie | Selfie image file | File |
| national_id | National ID image file | File |
| consent | Indicates whether the data owner has consented to identity verification. | String |
| consent_given_by | Name or identifier of the person who provided the data owner’s consent. | String |
Please find sample implementation on the left
# Response Parameters
Below is a sample response
# Face ID Match
Match details on a customer. As sample response is as follows:
{
"code": "200.001",
"message": "Face match completed",
"data": {
"match_score": 92.5,
"is_match": true
}
}