Face Match
Use this check to get a face match score between an identity document and a user selfie.
Request:
{
"template_id" : "{{YOUR_TEMPLATE_ID}}",
"user_data": {
"selfie": "{{SELFIE_BASE64_STRING}}",
"identity": {
"identity_document_front": "{{DOCUMENT_BASE64_STRING}}"
}
}
}
Response:
{
"aiprise_summary": {
"verification_result": "APPROVED"
},
"client_reference_id": null,
"created_at": 123456789,
"face_match_info": {
"face_match_score": 95.05,
"result": "APPROVED"
},
"status": "COMPLETED",
"template_id": "{{YOUR_TEMPLATE_ID}}",
"verification_session_id": ""
}
Updated 19 days ago