Use this value to call the service using the pre-generated account link.
Banco Credicoop (v1.0)
https://api.khipu.com/
Request
Este método se conecta a la cuenta especificada por el usuario en Banco Credicoop-Empresas y retorna las transacciones del día actual.
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 de la red.
- Productionhttps://api.khipu.com/v1/ar/banking/business/bancocredicoop.coop/transactions 
- curl
- Node.js
- Python
- PHP
- Java
- C#
- Go
- Ruby
- JavaScript
- Java8+Apache
curl -i -X POST \
  https://api.khipu.com/v1/ar/banking/business/bancocredicoop.coop/transactions \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "RequestData": {
      "AccountNumber": "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.
Indicates how to treat this specific error code, based on the type of error.
{ "OperationId": "6baf6c19-e485-463b-ae24-a821b025c8a4", "Status": "OK", "Data": { "Transaction": [ { "AccountId": "873458", "AddressLine": "SUCURSAL SANTIAGO CENTRO", "BookingDateTime": "2017-07-22T00:00:00-0400", "CreditDebitIndicator": "Credit", "StatementReference": [ … ], "Status": "Booked", "TransactionId": "c830d0c9a0904ea6badbaf8e25ff6e87", "TransactionInformation": "PAGO DE CUENTAS", "TransactionMutability": "Immutable", "TransactionReference": "09cce92d-494b-4f29-8584-6a0409a052c7", "ValueDateTime": "2017-07-21T17:32:28-0400", "Amount": { … }, "Balance": { … }, "BankTransactionCode": { … }, "CardInstrument": { … }, "ChargeAmount": { … }, "CreditorAccount": { … }, "CreditorAgent": { … }, "CurrencyExchange": { … }, "DebtorAccount": { … }, "DebtorAgent": { … }, "MerchantDetails": { … }, "ProprietaryBankTransactionCode": { … }, "SupplementaryData": [ … ] } ] }, "AdditionalInformation": null, "Error": null, "LifeSpan": null }