Face Match

face_match

POST https://secctrl.tutelar.io/api/v1/kyc/vision/face_match

Post parameters description is given below,

Post Parameter TypeIs MandatoryDescription

selfie

String

Yes

Selfie Image Url or Base64 String

id_card

String

Yes

Document Image Url or Base64 String

Sample Post Parameters

{
    "selfie": "Image URL/Base64 String",
    "id_card": "Image URL/Base64 String"
}
{
    "success": true,
    "code": 200,
    "message": "The request has been successfully completed.",
    "reference_id": "ffebbc0a-278e-43a9-9b86-0ed74f3a8a3e",
    "status": "completed",
    "result": {
        "match": "yes",
        "match_score": 97,
        "confidence": 98,
        "to_be_reviewed": "no"
    },
    "requested_at": "2023-01-12T08:53:04.074Z",
    "completed_at": "2024-08-28T07:53:04.525Z"
}       

Last updated