post https://api.prod.metamap.com/creditchecks/v1/ar/credit-fidelitas
Review a user's credit score against Argentina's Fidelitas
This API Requires a Webhook URL
Go here for more information on setting up a webhook listener.
This API pulls data from the Argentinian Fidelitas database for users or legal entities with an Argentinian Unique Tax Identification Code (Clave Única de Identificación Tributaria, CUIT) or a user's full name and National Identity Document number (Documento Nacional de Identidad, DNI) to check a user's credit.
The results of a successful request will be sent to your webhook listener.
The following are example calls:
curl --location --request POST 'https://api.getmati.com/creditchecks/v1/ar/credit-fidelitas' \
--header 'Authorization: Bearer <access_token> ' \
--header 'Content-Type: application/json' \
--data-raw '{
"cuit": "00-00000000-0",
"callbackUrl": "https://some.webhool.url" }'
curl --location --request POST 'https://api.getmati.com/creditchecks/v1/ar/credit-fidelitas' \
--header 'Authorization: Bearer <access_token> ' \
--header 'Content-Type: application/json' \
--data-raw '{
"dni": "00.000.000",
"fullName": "John Doe,
"callbackUrl": "https://some.webhook.url" }'