Business Identity Validation - Chile
Lets integrate Business Identity Validation - Chile in your system. First, get your Apitude API key, then send a POST request to Apitude... And that's it!.
That POST request should return the following
{
"message": "Request processed successfully",
"url": "/api/v1.0/requests/identity-business-cl/e0606c19-a32d-410f-b2eb-d57a665677bc/",
"request_id": "e0606c19-a32d-410f-b2eb-d57a665677bc"
}
This response will contains a unique request ID that you should poll using a GET as follows
How does the response looks like?
{
"result": {
"data": {
"found": true,
"route": "AV APOQUINDO 3721",
"country": "CHILE",
"general": {
"sigla": "",
"categoria": "PERSONA JURIDICA COMERCIAL",
"razon_social": "TENPO TECHNOLOGIES SPA",
"identificacion": "77005409-5",
"nombre_empresa": "TENPO TECHNOLOGIES SPA",
"subtipo_contribuyente": "SOCIEDAD POR ACCIONES",
"estado_registro_mercantil": "ACTIVA"
},
"locality": "SANTIAGO",
"location": {
"lat": -33.41601,
"lng": -70.59128
},
"postal_code": "7550177",
"neighborhood": "LAS CONDES",
"phone_number": "+56222071811",
"street_number": "3721 OF 91",
"formatted_address": "AV APOQUINDO 3721 OF 91 , LAS CONDES, SANTIAGO, XIII REGION METROPOLITANA, CHILE",
"administrative_area_1": "XIII REGION METROPOLITANA",
"administrative_area_2": "VITACURA",
"actividades_economicas": [
{
"471990": "OTRAS ACTIVIDADES DE VENTA AL POR MENOR EN COMERCIOS NO ESPECIALIZADOS N.C.P.",
"479909": "OTRAS ACTIVIDADES DE VENTA POR MENOR NO REALIZADAS EN COMERCIOS, PUESTOS DE VENTA O MERCADOS N.C.P.",
"661909": "OTRAS ACTIVIDADES AUXILIARES DE LAS ACTIVIDADES DE SERVICIOS FINANCIEROS N.C.P."
}
]
},
"error": "",
"end_at": "2023-04-10 17:41:28.753784",
"status": 200,
"message": "successful",
"queried_by": "testUser",
"service_name": "identity-business-cl"
},
"message": "Request completed"
}
Ok, but what does each field in that JSON means?
The general parts:
message:
The message is an Apitude generatedstring
with an informational text about the request.result:
The result is contains the main part of the request.result.error:
The error is astring
generated by apitude for the request if everything worked it will be blank.result.message:
The message is astring
with two optionssuccessful
orunsuccessful
depending of how your request finished.result.queried_by:
The queried_by field is astring
that lets you know what user started the request.result.end_at:
The end_at field is astring formatted date
that lets you know at what time the request ended in Apitude.result.service_name:
The service_name field is astring
that echos the service called. For this service it will always beidentity-business-cl
.result.status:
The status field is ainteger
that represents whether the service returned data from the input sent in the request. It could be one of the following values:200
: The service returned response data for the payload that was sent in the creation of the request.404
: The service did not returned data for the payload that was sent in the creation of the request.400
: The service did not started because your input was invalid.500
: Apitude tried to execute your request, however the service Apitude uses to execute your request was down. Please wait some time and try again, Apitude will not charged you for requests with this code.
Depending on the service, you want it to return different codes. For example, if you are checking the user against a security list to whitelist the user you should look for a
404
, because a200
would mean the user is in fact in the list. Other cases however, like creating objects in the name of a user you want the code to be200
, since it will imply the creation was a success.
The data in the response:
Please refer to the official docs of this service online to find out more about what data is returned.
About this service
This service allows obtaining, through API, identity validation information for Chilean companies that Apitude obtains through our series of affiliated partners. This API receives a RUT number from a Chilean legal entity and returns the information required to validate its data, such as addresses, telephone numbers, company name, state of commercial registration, economic activities, among others. The information is obtained from the Chilean Internal Tax System (SII).
Who can you query using this service?:
This service (identity-business-cl) is available for you to query companies/businesses only.
Get API Access