Skip to main content

1:1 Validation - Face Match

To use the 1:1 Validation (Face Match) functionality, the validation parameter must be set to true in the SDK constructor, which can be done by calling the setValidation() method. In addition, the documentNumber parameter must be filled with the user's CPF. As shown in the example below:

FaceRecognition faceRecognition = new FaceRecognition.Builder("YOUR_MOBILE_TOKEN_SENT_BY_QITECH")
// ... Other configurations
.setDocumentNumber("000.000.000-00")
.setValidation(true)
// ...
.build();

ATTENTION: 1:1 validation can only be used from the user's second session onwards, that is, after the first session, when the documentNumber parameter is filled with the user's CPF and the validation parameter is set to false, having a record to be validated.