Authorizations
Basic authentication header of the form Basic <api_key>, where <api_key> is your api key.
Query Parameters
Sort string in the format field:direction. To provide multiple sort fields, separate them with commas.
Available directions: asc, desc.
Available fields: transactionSequenceId, documentSequenceId, documentType, accountCode, accountLabel, postingDate, accountType, taxTagLabel, transactionAmount, transactionCurrency, localAmount, localCurrency, groupAmount, groupCurrency, createdAt.
"amount:desc,createdAt:asc"
Filter string in the format field:operator:value. To provide multiple filters, separate them with commas.
Available operators: eq, ne, in, not_in, gt, gte, lt, lte.
- For
inandnot_inoperators, provide multiple values separated by the pipe character (|).
Available fields: accountCode, accountId, accountType, accDocId, businessPartnerId, businessPartnerName, companyEntityCode, companyEntityId, createdAt, customPropertyValueId, documentSequenceId, documentType, eliminationOffset, groupAmount, groupCurrency, id, ledgerName, localAmount, localCurrency, postingDate, taxTagLabel, transactionCurrency, transactionId, transactionSequenceId.
"state:in:IN_DRAFT|SCHEDULED|PAID,amount:gte:500,vendorId:ne:null"
Maximum number of items to return. Default is 50, maximum is 200.
x <= 200Number of items to skip before starting to collect the result set. Deprecated, use 'cursor' instead.
The cursor position to start returning results from.
To opt-in into cursor-based pagination, provide 0 for the initial request.
For subsequent requests, use nextCursor and prevCursor from the previous response to navigate.
If true, includes the maximum line amount in the response. This field is deprecated and will be removed, please fetch all lines and compute this locally if needed
Response
default response
Maximum line amount in transaction currency across all records. This field is deprecated and will be removed, please fetch all lines and compute this locally if needed
List of records for the current page
Boolean flag indicating if there are more records available
Total number of records (only for offset pagination). This field is not guaranteed to be returned and only available for offset pagination, please do not rely on it and migrate to cursor pagination.
Cursor for fetching the next page (only for cursor pagination)
Cursor for fetching the previous page (only for cursor pagination)