v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Transaction flows

List transaction flows

List transaction flow configurations that link transaction types and processing codes.

See Processing codes and transaction types and Payments configurations for information on processing codes and transaction types, how to create them, and map them to each other.

get/v1/transaction-flow

Query parameters

processingCodestring

Processing code filter

transactionTypeIdinteger

Transaction type ID filter.

pageOffsetinteger

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

Response

OK

has_nextboolean

Indicates whether there are more pages after the current page

Example response

{
  "items": [
    [
      {
        "transaction_type_id": 7001,
        "processing_code": "00AB11",
        "key": "OTHER",
        "custom_key": "national_rate"
      },
      {
        "transaction_type_id": 7002,
        "processing_code": "00AB22",
        "key": "OTHER",
        "custom_key": "fee_amount"
      }
    ]
  ]
}