v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Transactions

List transactions

List transactions without their metadata. If you provide at least one of the following parameters, the eventDateStart parameter is optional.

  • id
  • authorizationId
  • authorizationIds
  • statementId
  • authorizationTrackingId
  • numberOfLatestTransactions

If you don't provide any of the above parameters, you must include the eventDateStart parameter, and the maximum allowed query range is 90 days.

get/v2/transactions

Query parameters

statementIdinteger

Statement ID

customerIdinteger

Customer ID

transactionTypeIdinteger

Transaction type ID filter.

processingCodestring

Processing code

creditboolean

Show only credit (true) or debit (false) transactions.

statementPostboolean

Filter on StatementPost field. This field indicates whether a transaction should be posted to the statement.

authorizationIdinteger
Example:1

The authorization ID

authorizationType'NETWORK' | 'PLATFORM'

The authorization type

eventDateStartstring date or date-time
Example:2021-06-26T12:03:04Z

Event date period start

order'asc' | 'desc'

The order of the result set. The results are always ordered by transaction date. This param indicates whether the order is ascending or descending.

eventDateEndstring date or date-time
Example:2021-06-26T12:03:04Z

Event date period end

numberOfLatestTransactionsinteger

Number of latest transactions. Get the X latest transactions from the date specified in the event_date field. This filter overwrites page filters and doesn't allow any other filters with it.

authorizationTrackingIdstring

Authorization tracking ID

pageSizeinteger

Maximum number of transactions per page.

pageOffsetinteger

Page offset of transactions. Indicates which page to start with when returning the results. Defaults to 0.

idsinteger[]

Array of transaction IDs

userCategorystring

User category

paymentMethodIdstring

Payment method ID

Response

OK

has_nextboolean

Indicates whether there are more pages after the current page.

Example response

{
  "items": [
    {
      "id": "E1234567890123456789012345678901",
      "debtor_account_id": "156704",
      "creditor_account_id": "257938",
      "amount": 1000,
      "refundable_amount": 900,
      "settlement_time": "2025-10-23T09:00:00Z"
    }
  ]
}