v3

latestOpenAPI 3.0.3Apache 2.02026-07-312637031.3 MB
Transactions

List pending transactions

Get paginated list of pending transactions matching the provided filters

get/transactions/pending

Query parameters

include_child_transactionsboolean

Include transactions from sub-accounts when listing transactions for a given account

statusstring[]

The status of the transaction

typestring
Example:card

Only display transactions matching the given type. The type typically represents the payment rail used. Valid values are ach, card, cash, check, dispute, eft_ca, external_card, fednow, fee, internal_transfer, reward, synctera_pay, and wire.

amountinteger
Example:1000

Only return transactions equal to the given amount (in minor currency units, e.g., cents).

total_amountinteger
Example:1200

Only return transactions equal to the given total amount (in minor currency units, e.g., cents). This may differ from amount for holds with increases/decreases.

from_datestring date

Only display transactions with a posting date greater than from_date

to_datestring date

Only display transactions with a posting date less than or equal to to_date

barcode_numberstring[]

Barcode number(s). Multiple barcode numbers can be provided as a comma-separated list.

transaction_idstring uuid
Example:7d943c51-e4ff-4e57-9558-08cab6b963c7

Only display holds linked to the provided transaction id

digital_wallet_token_idstring[]

Digital Wallet token ID(s). Multiple IDs can be provided as a comma-separated list.

cashbackboolean

If true, only transactions with cashback will be returned. If false, only transactions without cashback will be returned. If not provided, all transactions will be returned.

idempotency_keystring[]

Transaction Idempotency Key(s). Multiple keys can be provided as a comma-separated list.

account_nostring

Account number

exclude_jit_transactionsboolean

Hide "JIT funding" transactions from results

uuidstring[]

Transaction UUID(s). Multiple UUIDs can be provided as a comma-separated list.

page_tokenstring

Optional pagination token to be provided to retrieve subsequent pages, returned from previous get

Example:a8937a0d
account_idstring[]

Account ID

card_idstring uuid
Example:6dc0397d-1aba-4be9-9582-895a7a887d49

Card ID

reference_idstring

Reference ID

limitinteger

Maximum number of objects to return per page. If the limit is greater than 100, then it will be set to 100.

Example:100
subtypestring

Only display transactions matching the given subtype

uuid_ninstring[]

Transaction UUID(s) to exclude from the query. Multiple UUIDs can be provided as a comma-separated list.

Response

Paginated list of pending transactions

next_page_tokenstring nullable required

If returned, use the next_page_token to query for the next page of results. Not returned if there are no more rows.

Example response

{
  "result": [
    {
      "account_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
      "data": {
        "history": [
          {
            "account_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
            "offset_account_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
            "tenant": "abcdef_ghijkl"
          }
        ]
      },
      "offset_account_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
      "tenant": "abcdef_ghijkl"
    }
  ]
}