Balance Statements Query

The balance statement can be queried using the GET /balance/{id}/journal method. The user will provide the desired period and pagination for the statement.

The default fields returned in the balance statement are:

Field
Description

id

The unique identifier of a journal entry record

type

The type of record indicating whether it is a debit or credit

transaction_id

Transaction identifier

transaction_type

User transaction type

entry_id

Entry identifier

entry_type

Entry name

entry_order

Entry creation order

amount

Entry amount

balance_after

Balance amount after the record creation

balance_seq_num

Sequential update number of the current balance

created_at

Transaction created datetime

settled_at

Transaction reference date (or accounting date)

parent_transaction_id

Parent Transaction Identifier

external_id

The user-assigned identifier at the time of transaction creation

Statement query example:

GET /balance/19720852-be40-489a-a3b3-985f51a0458c/journal

{
  "date_from": "",
  "date_to": "",
  "limit": 100,
  "cursor": 0
}

Response example:

Last updated