GET
/wire_transfersList wire transfers
Lists wire transfers between an account and another account accessible by Fedwire. Filter results by account, external account, idempotency key, status, or creation time, and use cursor to retrieve subsequent pages.
cursorstringoptional
Return the page of wire transfers after this cursor.
limitintegeroptional
Maximum number of transfers to return. Must be at least 1 and no more than 100. Defaults to 100 when omitted.
account_idstringoptional
Filter transfers to those belonging to the specified account.
external_account_idstringoptional
Filter transfers to those made to the specified external account.
idempotency_keystringoptional
Filter for the transfer with this idempotency key. Must be between 1 and 200 characters.
status.inarray<string>optional
Filter by one or more statuses: pending_approval, canceled, pending_creating, pending_reviewing, rejected, requires_attention, reversed, submitted, or complete. Encode multiple values as a comma-delimited list.
created_at.afterstringoptional
Return transfers created after this ISO 8601 timestamp.
created_at.beforestringoptional
Return transfers created before this ISO 8601 timestamp.
created_at.on_or_afterstringoptional
Return transfers created at or after this ISO 8601 timestamp.
created_at.on_or_beforestringoptional
Return transfers created at or before this ISO 8601 timestamp.
200Returns a wire transfer list containing transfer objects in `data` and a `next_cursor` for retrieving the next page, or null when there is no next page.
dataarray<WireTransfer>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 results in a client error.
5XXReturned when the request results in a server error.
Error handling
limit must be at least 1 and no more than 100, and status.in must contain accepted statuses. idempotency_key, when supplied, must be between 1 and 200 characters; creation-time filters must use ISO 8601 timestamps.