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
| Key | Type | Mandatory | Description |
|---|---|---|---|
| firstName | string | yes | First name of the subject. Optimal to include. |
| lastName | string | yes | Last name of the subject. Optimal to include. |
| middleName | string | no | Middle name of the subject. |
| sex | string | yes | M - Male / F - Female |
| id.idNumber | string | yes | DNI # 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 Type | Label | Description |
|---|---|---|
| PASSED | LOW_RISK | The provided Selfie matches the photo on record. |
| REJECTED | HIGH_RISK | The provided Selfie does not match the photo on record. |
| WARNING | MEDIUM_RISK | It cannot be determined whether the Selfie matches the photo on record. |
| NOT_EXECUTED | TECHNICAL_ERROR | Verify the provided data is correct and retry, or contact Support. |
| NOT_EXECUTED | PERMISSION_DENIED | Cannot be executed because the required permissions or credentials are missing. Verify your API key and access rights. |
| NOT_EXECUTED | BAD_REQUEST | Malformed or missing required parameters. Ensure that all mandatory fields are included and correctly formatted before retrying. |
Data
Details
| Key | Possible Values | Description |
|---|---|---|
| nameMatch | MATCH, NOT_MATCH | To be a MATCH the concatenated firstName and lastName value of the input data must exactly match what is in the Renaper database. |
| faceMatch | MATCH, NOT_MATCH | Selfie matches the photo on record. |
| idNumberMatch | MATCH, NOT_MATCH | Input matches valid Renaper number. |
| genderMatch | MATCH, NOT_MATCH | Input matches gender on record. |