GET
/wire_drawdown_requestsList wire drawdown requests
Lists wire drawdown requests, which let you request that another party send funds by wire. Filter results by status or idempotency key, and use cursor to retrieve subsequent pages.
cursorstringoptional
Return the page of wire drawdown requests after this cursor.
limitintegeroptional
Maximum number of requests to return. Must be at least 1 and no more than 100. Defaults to 100 when omitted.
status.inarray<string>optional
Filter by one or more statuses: pending_submission, fulfilled, pending_response, or refused. Encode multiple values as a comma-delimited list.
idempotency_keystringoptional
Filter for the request with this idempotency key. Must be between 1 and 200 characters.
200Returns a wire drawdown request list containing request objects in `data` and a `next_cursor` for retrieving the next page, or null when there is no next page.
dataarray<WireDrawdownRequest>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.