GovChecks: Argentina DNI

Verify that a user's DNI based on card number and issue date

📘

This API Requires a Webhook URL

Go here for more information on setting up a webhook listener.

MetaMap connects with the Argentinian National Direction of Migration (Dirección Nacional de Migraciones) site through an authorized data provider to validate that the National Identity Document (Documento Nacional de Identidad / DNI) number present in the ID card exists and its date of issue matches the last one issued to the user

The following is an example request with metadata

curl --request POST \
     --url 'https://api.getmati.com/govchecks/v1/ar/dni' \
     --header 'Authorization: Bearer <access_token>' \
     --header 'Accept: application/json' 
     --data-raw '{
         "documentNumber": "0000000000",
         "dateOfBirth": "1990-01-01",
         "gender": "M",
         "dateOfIssue": "2020-01-01",
         "callbackUrl": "https://some.webhook.url",
         "metadata": {
           "user-defined-1": "string",
           "user-defined-2": "string"
         }
       }'
Language
Authorization
OAuth2
Click Try It! to start a request and see the response here!