Entries

Entries (entry) are financial movements between registered balances in the form of double-entry bookkeeping (a debit and a credit) at the time of transaction execution.

Each Entry represents a specific event and in a transaction. One or more Entries can be atomically recorded, such as the principal amount of a transaction along with a specific fee.

Along with the Entries, the system records - atomically during the transaction - the Statements (journal) of each involved account, both for debits and credits.

Entries capture all the necessary information for the analysis of the transaction history:

Field
Description

id

Unique identifier of the entry

external_id

User-defined identifier for the entry at the time of transaction creation

parent_transaction_id

User-defined identifier for a prior transaction related to the current transaction

transaction_id

Transaction identifier

transaction_type

Transaction type used

entry_order

Order of creation of the entry as determined in the setup

entry_type

User-defined identifier name for the current entry

currency

Currency used in the entry

amount

Value of the entry

debit_balance_id

Identifier of the debited balance

debit_balance_after

Balance amount after the debit

debit_balance_seq_num

Sequential value movement of the debited balance

credit_account_id

Identifier of the credited balance

credit_balance_after

Balance amount after the credit

credit_balance_seq_num

Sequential value movement of the credited balance

created_at

Creation datetime of the transaction

settled_at

Reference date of the transaction (optionally provided)

Entries Query

The Entries can be queried using the GET /transaction/{id}/entry method, using parameters as shown in the following example.

Example of Entry query:

Response example:

Last updated