GET
/swift_transfersList Swift Transfers
Lists Swift Transfers, with optional filters for account, idempotency key, status, and creation time. Use cursor to continue from a previous page and limit to control the number of results; the limit defaults to and cannot exceed 100.
cursorstringoptional
Return entries after this cursor; use the `next_cursor` value from a previous response to continue listing.
limitintegeroptional
Maximum number of objects to return. Must be between 1 and 100. Defaults to 100 when omitted.
account_idstringoptional
Filter Swift Transfers to those originating from this Account.
idempotency_keystringoptional
Filter to the record with this idempotency key. Must contain between 1 and 200 characters.
status.inarray<string>optional
Filter results to the specified statuses. For a GET request, provide a comma-delimited list; accepted values are pending_approval, canceled, pending_initiating, pending_reviewing, requires_attention, initiated, rejected, and returned.
created_at.afterstringoptional
Return results created after this ISO 8601 date-time.
created_at.beforestringoptional
Return results created before this ISO 8601 date-time.
created_at.on_or_afterstringoptional
Return results created at or after this ISO 8601 date-time.
created_at.on_or_beforestringoptional
Return results created at or before this ISO 8601 date-time.
200Returns a list response containing Swift Transfer objects in `data` and a `next_cursor` for retrieving the next page, or null when there are no more results.
dataarray<SwiftTransfer>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 fails with a client error.
5XXReturned when the request fails with a server error.
Error handling
The limit query parameter must be between 1 and 100, and idempotency_key must contain 1 to 200 characters. Values for status.in must be accepted Swift Transfer statuses, and timestamp filters must use ISO 8601 date-time values.