Face match

AI Tools

If you wish to request a face match check from the user this section will provide you with all the details to complete this.

Here we describe how to:

  • Request a face match check.

Name

Resources

Type

Manual check available

Face match

1x Doc Resource & 1x Liveness Resource

Asynchronous

A request to assess whether the user's face matches the face on the ID document. The user's facial image is obtained from the liveness check, which must be performed first.

const faceMatchCheck = new RequestedFaceMatchCheckBuilder() .withManualCheckFallback() .build();
RequestedFaceMatchCheck faceMatchCheck = RequestedFaceMatchCheck.builder() .withManualCheckFallback() .build();
<?php $faceMatchCheck = (new RequestedFaceMatchCheckBuilder()) ->withManualCheckFallback() ->build();
faceMatchCheck = RequestedFaceMatchCheckBuilder() .with_manual_check_fallback() .build()
var faceMatchCheck = new RequestedFaceMatchCheckBuilder() .WithManualCheckFallback() .Build();
var faceMatchCheck *check.RequestedFaceMatchCheck faceMatchCheck, err = check.NewRequestedFaceMatchCheckBuilder(). WithManualCheckFallback(). Build()
{ "type": "ID_DOCUMENT_FACE_MATCH", "config": { "manual_check": "FALLBACK" } }

Manual Check

Explanation

withManualCheckFallback

The requested check will only go to the Security Centre if the machine check fails.

withManualCheckNever

The requested check will never go to the Security Centre.

withManualCheckAlways

The requested check will always go to the Security Centre regardless of the success of the automated check.

Note: This config may result in additional charges.


On This Page
Face match