Background checks on international lists [⚠️DEPRECATED]
danger
This service is deprecated. Migration to the Generate Background Check service is recommended.
Service to perform queries in the KYC, SARLAFT and SAGRILAFT background validation system in more than 530 international lists in 90 countries.
POST /validate/backgroundCheck
HOST: {{api_auco}}
Authorization: {{private_key}}
info
This service uses the company's private key.
Nombre | Descripción |
---|---|
email String | Required. Email of the process creator. This email must be registered on the Auco platform and must belong to the company. |
country String | Required. Country of the person to be validated. Accepted values: CO ,MX ,VE |
type String | Required. Type of document of the person to be validated. Accepted values: CC , CE , PA |
identification String | Required. Identification number of the person to be consulted. |
targetWebhooks Array<String> | Optional. List of webhooks to be notified. If not defined, it will be sent to the "default" webhook. |
tags Array<String> | Optional. List of tags to be sent when notifying the configured webhooks. |
Responses
- 200: Successful query.
{
"documentType": "CC",
"documentNumber": "1000100100",
"fullName": "NOMBRE1 APELLIDO1 APELLDIO2",
"firstName": "NOMBRE1",
"lastName": "APPELIDO1 APELLIDO2",
"arrayName": [
"NOMBRE1",
"APELLIDO1",
"APELLIDO2"
],
"query": "######",
"count": "1",
"list": [
[
{
"key": "No",
"value": "1"
},
{
"key": "Prioridad",
"value": "1"
},
{
"key": "Tipo documento",
"value": "CC"
},
{
"key": "Numero documento",
"value": "1000100100"
},
{
"key": "Nombre",
"value": "NOMBRE1 APELLIDO1 APELLDIO2"
},
{
"key": "Número tipo lista",
"value": "31"
},
{
"key": "Lista",
"value": "Colombia - Peps en dejación del cargo (Decreto 1674 de 2016)"
}
]
]
}
Example
- HTTP
- Node
POST /validate/backgroundCheck HTTP/1.1
Host: {{api_auco}}
Authorization: {{private_key}}
{
"country":"CO",
"identification": "1000100100",
"type": "CC"
}
var axios = require('axios');
axios.post('{{api_auco}}/validate/backgroundCheck', {
"country":"CO",
"identification": "1000100100",
"type": "CC"
}, {
headers: {
Authorization: '{{private_key}}'
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});