https://api.khipu.com/
Este método se conecta a la Banca Central Argentina y retorna la situación crediticia del CUIT/CUIL proporcionado.
El uso del campo CallbackUrl
desencadenará un proceso asíncrono y los datos resultantes se enviarán más tarde al webhook especificado. Esta es la forma preferida de interactuar con nuestros servicios, ya que asegura que se harán todos los esfuerzos para extraer los datos y cumplir con su solicitud dentro de un plazo razonable. Si desea la respuesta de inmediato, omita el campo CallbackUrl
pero tenga en cuenta que puede provocar tiempos de espera dependiendo del tamaño del resultado de los datos y las condiciones
Information needed to consult for the user.
https://api.khipu.com/v1/ar/services/bcra.gob.ar/credit-situation
curl -i -X POST \
https://api.khipu.com/v1/ar/services/bcra.gob.ar/credit-situation \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"RequestData": {
"DocumentNumber": "000011887755"
}
}'
Successful operation. Returns a JSON object with the transactions for the specified account in the Data
field.
Unique identifier of the operation.
Operation status. OK
means that the service was executed successfully even if it does not return Data. ERROR
indicates that something happened that prevented the successful completion of the process.
This field can be used to display relevant information specific to the response, for instance indicating that the Data
field is incomplete.
Object with the error details, used when Status=ERROR
. If Status=OK
this field will be null. You can read a complete explanation of this object visiting this link
Indicates how to treat this specific error code, based on the type of error.
{ "OperationId": "6baf6c19-e485-463b-ae24-a821b025c8a4", "Status": "OK", "Data": { "Situation": [ { "Entity": "BANCA CENTRAL DE ARGENTINA", "Situation": "Normal Situation", "Amount": { … }, "DaysOfDelay": "N/A" } ] }, "AdditionalInformation": null, "Error": null, "LifeSpan": null }