GET/card_push_transfers

List Card Push Transfers

Lists Card Push Transfers, which send funds to a recipient's payment card in real time. Filter by Account, creation time, status, or idempotency key, and use cursor to retrieve subsequent pages.

9 parameters
cursorstringoptional
Returns the page of entries after this cursor.
limitintegeroptional
Maximum number of Card Push Transfers to return. Must be at least 1 and is capped at 100. Defaults to 100 when omitted.
Default:100
account_idstringoptional
Filter transfers to those belonging to the specified Account.
created_at.afterstringoptional
Return results after this timestamp in ISO 8601 date-time format.
created_at.beforestringoptional
Return results before this timestamp in ISO 8601 date-time format.
created_at.on_or_afterstringoptional
Return results at or after this timestamp in ISO 8601 date-time format.
created_at.on_or_beforestringoptional
Return results at or before this timestamp in ISO 8601 date-time format.
status.inarray<string>optional
Filter by status using a comma-delimited list: pending_approval, canceled, pending_submission, pending_reviewing, requires_attention, submitted, complete, or declined.
idempotency_keystringoptional
Filter for the transfer with this idempotency key. Must contain between 1 and 200 characters.

3 status codes
200Returns a list of Card Push Transfer objects and a `next_cursor` for retrieving the next page, or null when there are no further results.
dataarray<CardPushTransfer>required
The contents of the list.
next_cursorstringrequired
A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next page of results. If there are no more results, the value will be `null`.
4XXReturned when the request encounters a client-side error.
5XXReturned when the request encounters a server-side error.

Error handling

limit must be at least 1 and cannot exceed 100; it defaults to 100 when omitted. Each status.in value must be an accepted Card Push Transfer status, and idempotency_key must contain 1 to 200 characters.