Find ledger entries
Finds the transactions of the ledger that match the given filters.
Finding ledger entries
Ledger entries are returned as the individual transactions they consist of, newest first. For example, the following request returns all transactions posted to the bank account in January 2025:fromandtolimit the results to a date range. Either can be used on its own.accountreturns transactions in which the account appears as debit or as credit account.descriptionsearches the description text of transactions.
VAT transactions
A ledger entry posted with a tax code consists of two transactions: the net transaction and a VAT transaction booking the VAT debt. Both are returned, and they reference each other throughlinkedTransactionIds. The VAT transaction has isVatTransaction set to true, so you can filter it out if you only need the net bookings.
Pagination
Results are paginated withlimit (default 30, at most 200) and skip. To page through all results, increase skip by the limit until fewer results than the limit are returned.Authorizations
API token for authentication. Obtain from your Infinity account settings.
Query Parameters
Only return transactions dated on or after this date (YYYY-MM-DD).
Only return transactions dated on or before this date (YYYY-MM-DD).
Only return transactions posted to this account number, either as debit or as credit account.
1000 <= x <= 9999Only return transactions whose description contains this text.
128Pagination limit for the results. Defaults to 30 if not specified. Maximum allowed value is 200.
x <= 200Pagination offset for the results
Response
Successfully returns the matching transactions, newest first.
The transactions matching the query. Ledger entries with VAT consist of a net transaction and a linked VAT transaction, which are both returned.