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 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_MATCHIndicates whether the concatenated firstName and lastName values provided in the input data exactly match the corresponding name stored in the Renaper database.
faceMatchMATCH, NOT_MATCH, PARTIAL_MATCHIndicates the result of the face comparison between the submitted selfie and the photo on record in the Renaper database. A PARTIAL_MATCH means some facial similarity was detected, but not enough to be considered a full match.
idNumberMatchMATCH, NOT_MATCHIndicates whether the identification number provided in the input data matches a valid identification number stored in the Renaper database.
genderMatchMATCH, NOT_MATCHIndicates whether the gender provided in the input data matches the gender stored in the Renaper database.