Stripe | Financial Infrastructure to Grow Your Revenue

Stripe | Financial Infrastructure to Grow Your Revenue

4466 articles

List all OutboundTransfers


List all OutboundTransfers

GET / v1 / treasury / outbound_transfers

Returns a list of OutboundTransfers sent from the specified FinancialAccount.

Parameters

  • financial _ account string Returns objects associated with this FinancialAccount.
  • status enum Only return OutboundTransfers that have the given status: processing, canceled, failed, posted, or returned.

More parameters

  • ending _ before string
  • limit integer
  • starting _ after string

Returns

A dictionary with a data property that contains an array of up to limit OutboundTransfers, starting after OutboundTransfer starting_after. Each entry in the array is a separate OutboundTransfer object. If no more OutboundTransfers are available, the resulting array is empty.

Response

Cancel an OutboundTransfer

POST / v1 / treasury / outbound_transfers /:id / cancel

An OutboundTransfer can be canceled if the funds have not yet been paid out.

Parameters

No parameters.

Returns

Returns the OutboundTransfer object if the cancellation succeeded. Returns an error if the object has already been canceled or cannot be canceled.

Response

Test mode: Fail an OutboundTransfer Test helper

POST / v1 / test_helpers / treasury / outbound_transfers /:id / fail

Transitions a test mode created OutboundTransfer to the failed status. The OutboundTransfer must already be in the processing state.

Parameters

No parameters.

Returns

Returns the OutboundTransfer object in the failed state. Returns an error if the OutboundTransfer has already been failed or cannot be failed.

Response

Last verified 2026-09-24

Is this helpful?