v1

latestOpenAPI 3.1.02026-07-24441967.0 KB

Get Account Reconciliation

Generate detailed reports of all completed transactions within a specific period. This endpoint is designed for accounting, auditing, and financial reconciliation.

get/api/accounts/{accountNumber}/balance-reconciliation

Path parameters

accountNumberstring required

Localpayment account number.

Query parameters

sincestring required

Start date in yyyy-mm-dd format.

untilstring required

End date in yyyy-mm-dd format.

Response

OK

totalinteger required

Number of transactions in the response.

offsetinteger required

Number of pages in the response.

openingBalanceinteger required

Initial amount on the balance.

closingBalanceinteger required

Final balance amount.

Example response

{
  "data": [
    {
      "request": {
        "payer": {
          "document": {
            "type": "RUC",
            "id": "1791234561009"
          },
          "address": {
            "street": "Independencia",
            "number": "123",
            "city": "Cordoba",
            "state": "Cordoba",
            "country": "ARG",
            "zipCode": "X5000IUO",
            "comment": "Sucursal 123"
          }
        }
      }
    }
  ]
}