Skip to main content

Argentina Renaper Check

Jumio has a database check service available for Renaper in Argentina. This check allows you to validate the Documento Nacional de Identidad (DNI) and personal identifiable information.

This service connects with the National Registry of Persons (Renaper – Registro Nacional de las Personas). Renaper is the national agency that is responsible for the registration and identification of all individuals who are domiciled in the Argentinian territory or jurisdiction of all Argentina.

image

Supported Credentials

The following values can be uploaded as Prepared Data. Alternatively, they can be extracted by an upstream capability in a workflow.

  • To use the Renaper Check along with the standard Jumio IDIV service use workflow key 10054.
  • To use Prepared Data with the Renaper Check as a standalone capability use workflow key 10020.
Details
KeyTypeMandatoryDescription
firstNamestringnoFirst name of the subject.
lastNamestringnoLast name of the subject.
middleNamestringnoMiddle name of the subject.
sexstringyesM - Male, F - Female
dateOfBirthLocalDatenoDate of birth in YYYY-MM-DD format only
addressObjectyesOnly the fields mentioned are required
address.line1stringnoLine 1 of the address.
address.line2stringnoLine 2 of the address.
address.citystringnoCity of residence.
address.postalCodestringnoPostal code or Zip code.
address.subdivisionstringnoSubdivision (e.g., state).
address.countrystringyesCountry in ISO Alpha-3 format only, e.g., "ARG".
idObjectyesID-related details
id.idNumberstringyesDNI or ID number (e.g., "12345678").
id.TypestringconditionalType of the ID (e.g., "ID_CARD").
id.subTypestringconditionalSubtype of the ID (e.g., "NATIONAL_ID").
id.issuingDatestringconditionalDate the ID was issued.
id.expiryDatestringconditionalDate the ID will expire.

Sample Prepared Data Body

{
"firstName": "XXXXI",
"lastName": "XXXXXXI",
"sex": "M",
"middleName": "",
"dateOfBirth": "1997-01-10",
"address": {
"line1": "",
"postalCode": "",
"city": "",
"state": "",
"subdivision": "",
"country": "ARG"
},
"id": {
"idNumber": "12345678",
"type": "ID_CARD",
"subType": "NATIONAL_ID"
}
}

Response

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

Sample Response

"govtIdVerification": [
{
"id": "79e0fa63-0ff5-4bab-99b2-bb9c49637ba2",
"credentials": [
{
"id": "1ceaf3c0-2689-43ea-93aa-187c2ba5da51",
"category": "DATA"
}
],
"decision": {
"type": "PASSED",
"details": {
"label": "OK"
}
},
"data": {
"country": "ARG",
"type": "ID_CARD",
"firstNameMatch": "MATCH",
"lastNameMatch": "MATCH",
"nationalIdMatch": "MATCH",
"dobMatch": "MATCH",
"addressMatch": "NOT_MATCH",
"sexMatch": "MATCH",
"message": "Not Deceased"
},

}
}

Decision Type Label

Details
Decision TypeLabelDescription
NOT_EXECUTEDPRECONDITION_NOT_FULFILLEDProvided data is incomplete or incorrectly formatted.
NOT_EXECUTEDTECHNICAL_ERRORThe service encountered an error and was unable to process the request.
NOT_EXECUTEDPERMISSION_DENIEDThe request is not authorized to access the service.
PASSEDOKSuccessful processing of the request.
WARNINGALERTA warning was raised, typically indicating potential issues.
REJECTEDDENYThe request was denied due to a failure in validation or policy.

Data

Details
KeyTypeDescription
countrystringARG
typestringID_CARD
firstNameMatchstringMATCH / NOT_MATCH
lastNameMatchstringMATCH / NOT_MATCH
nationalIdMatchstringMATCH / NOT_MATCH
dobMatchstringMATCH / NOT_MATCH
addressMatchstringMATCH / NOT_MATCH
sexMatchstringMATCH / NOT_MATCH
messagestringNot Deceased

PII Fields Returned (DPA Restricted)

The following PII fields from the Argentina Renaper Check API response will be returned ONLY for customers who have signed the updated Data Processing Agreement (DPA). This feature is disabled by default and must be explicitly enabled by Jumio. Please work with your Jumio account manager if you require this.

    "data": {
"country": "ARG",
"type": "ID_CARD",
"firstNameMatch": "MATCH",
"lastNameMatch": "MATCH",
"nationalIdMatch": "MATCH",
"sexMatch": "MATCH",
"message": "Not Deceased",
"fullName": "XXXXXXXXXXXx",
"dateOfBirth": "YYYY-MM-DDD",
"idNumber": "XXXXXXXX",
"taxId": "XXXXXXXXX",
"taxIdType": "CUIT",
"gender": "F"
},

Field Mapping (DPA Restricted)

Jumio OutputDescription
fullNameIndividual’s registered name
dateOfBirthDate of birth on record
idNumberDocumento Nacional de Identidad (DNI)
taxIdTaxpayer identification number
taxIdTypeTaxpayer type – CUIT or CUIL
genderGender (M = Male, F = Female)

Response Example with PII Fields

"capabilities": {
        "govtIdVerification": [
            {
                "id": "e7e765ec-e282-4bbe-9d49-2dea489f5432",
                "credentials": [
                    {
                        "id": "edf900eb-0bec-4f07-9c8c-276ac29a00af",
                        "category": "DATA"
                    }
                ],
                "decision": {
                    "type": "PASSED",
                    "details": {
                        "label": "OK"
                    }
                },
                "data": {
                    "country": "ARG",
                    "type": "ID_CARD",
                    "firstNameMatch": "MATCH",
                    "lastNameMatch": "MATCH",
                    "nationalIdMatch": "MATCH",
                    "sexMatch": "MATCH",
                    "message": "Not Deceased",
                    "fullName": "XXXXXXXXXXX",
                    "dateOfBirth": "YYYY-MM-DD",
                    "idNumber": "XXXXXXXX",
                    "taxId": "XXXXXXXXXX",
                    "taxIdType": "CUIT",
                    "gender": "F"
                },
.....
}
]
}
warning

DNI numbers and names may be partially masked in logs and documentation examples to comply with data protection requirements.