Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Comma-separated list of card tokens
Filter transactions before this date (ISO 8601 format, e.g., "2023-04-01T00:00:00Z")
Filter transactions after this date (ISO 8601 format, e.g., "2023-03-01T00:00:00Z")
Filter by billing currency code
Filter by transaction currency code
Filter by Merchant Category Code (MCC)
Filter by transaction type code (e.g., "00" for Purchase, "01" for Withdrawal)
Response
Successful response
Thread ID for the transaction
"1234567890"
Date of the latest clearing record of the transaction
Whether the transaction is pending settlement.
- For Payments: true when authorized but not yet cleared, false when settled
- For Refunds: can be true if additional clearing steps are pending, typically false since they require both auth + clearing to appear
- For Reversals: typically false as they're usually processed quickly
A BigInt value represented as a string
A BigInt value represented as a string
First 2 digits of the DE3 field (ISO 8583), representing the transaction type code. Common values include (not limited to):
- "00": Purchase (POS)
- "01": Withdrawal (ATM)
- "10": Account Funding
- "20": Return of Goods
- "28": Prepaid Load
- "30": Balance Inquiry
- "70": PIN Change
- "72": PIN Unblock
The token identifying the card used for this transaction
Payment
Approved
, IncorrectPin
, InsufficientFunds
, ExceedsApprovalAmountLimit
, InvalidAmount
, PinEntryTriesExceeded
, IncorrectSecurityCode
, Reversal
, PartialReversal
, Other