Skip to main content

Argentina Renaper Biometric Verification

Biometric Verification checks a Selfie provided by the end user against the photo on record with Renaper. The ID number and selfie are provided as inputs, along with optional name and gender data, and a decision on the risk is returned in the response.

Supported Credentials

The Renaper number can be uploaded as Prepared Data. Alternatively, it can be extracted by an upstream capability in a workflow. The Selfie can be uploaded through the API, or obtained as part of the customer journey.

To use the API to upload Prepared Data and the Selfie use workflow key 10093. The Selfie will be checked by the Usability capability prior to calling the biometricVerification capability.

To use Renaper Verification along with the standard Jumio IDIV service use workflow key 10094.

The following value can be uploaded as Prepared Data.

Details
KeyTypeMandatoryDescription
firstNamestringyesFirst name of the subject. Optimal to include.
lastNamestringyesLast name of the subject. Optimal to include.
middleNamestringnoMiddle name of the subject.
sexstringyesM - Male / F - Female
id.idNumberstringyesDNI # example "12345678"

Response

Response data is available for transactions that include the risk signal. For information on transaction data see Viewing or Retrieving Workflow Transactions.

Example Response

"biometricVerification": [
{
"id": "4c9de7c7-0e91-4476-a303-dde196357ec5",
"credentials": [
{
"id": "b0e79c4e-b0e9-4121-bc93-a67b8e1ffc85",
"category": "ID"
},
{
"id": "233641de-2a97-4764-9153-180308145a00",
"category": "SELFIE"
}
],
"decision": {
"type": "WARNING",
"details": {
"label": "MEDIUM_RISK"
}
},
"data": {
"nameMatch": "MATCH",
"faceMatch": "PARTIAL_MATCH",
"idNumberMatch": "MATCH",
"genderMatch": "MATCH"
}
}

Decision Details Labels

Details
Decision TypeLabelDescription
PASSEDLOW_RISKThe provided Selfie matches the photo on record.
REJECTEDHIGH_RISKThe provided Selfie does not match the photo on record.
WARNINGMEDIUM_RISKIt cannot be determined whether the Selfie matches the photo on record.
NOT_EXECUTEDTECHNICAL_ERRORVerify the provided data is correct and retry, or contact Support.
NOT_EXECUTEDPERMISSION_DENIEDCannot be executed because the required permissions or credentials are missing. Verify your API key and access rights.
NOT_EXECUTEDBAD_REQUESTMalformed or missing required parameters. Ensure that all mandatory fields are included and correctly formatted before retrying.

Data

Details
KeyPossible ValuesDescription
nameMatchMATCH, NOT_MATCHTo be a MATCH the concatenated firstName and lastName value of the input data must exactly match what is in the Renaper database.
faceMatchMATCH, NOT_MATCHSelfie matches the photo on record.
idNumberMatchMATCH, NOT_MATCHInput matches valid Renaper number.
genderMatchMATCH, NOT_MATCHInput matches gender on record.