GET
/v1/issuing/transactionsList issuing transactions
Lists Issuing transactions in descending creation order, with the most recently created transaction first. Filter results by card, cardholder, creation time, or transaction type, and use cursor parameters to navigate additional pages.
- RetriesRetries up to 2×, 500ms backoff, 30s timeout.
cardstringoptional
Filters transactions to those belonging to the specified card. Must not exceed 5000 characters.
cardholderstringoptional
Filters transactions to those belonging to the specified cardholder. Must not exceed 5000 characters.
createdobjectoptional
Filters transactions by creation time using a Unix timestamp or range conditions such as `gt`, `gte`, `lt`, and `lte`.
ending_beforestringoptional
Cursor identifying an object; returns the preceding page of results.
expandarray<string>optional
Specifies response fields to expand; each value can contain up to 5000 characters.
limitintegeroptional
Maximum number of transactions to return, from 1 to 100. Defaults to 10 when omitted.
starting_afterstringoptional
Cursor identifying an object; returns the next page of results.
typestringoptional
Filters transactions by type: capture or refund.
200Returns a paginated list of Issuing transaction objects, a `has_more` indicator, the list object type, and the list URL.
dataarray<Transaction>required
has_morebooleanrequired
True if this list has another page of items after this one that can be fetched.
objectstringrequired
String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
urlstringrequired
The URL where this list can be accessed.
defaultError response.
errorobjectrequired
Error handling
type, when supplied, must be capture or refund. limit must be between 1 and 100 and defaults to 10, cursor identifiers must not exceed 5000 characters, and each expand value must not exceed 5000 characters.