Stripe | Financial Infrastructure to Grow Your Revenue

Stripe | Financial Infrastructure to Grow Your Revenue

4466 articles

Retrieve an OutboundPayment


Retrieve an OutboundPayment

GET / v1 / treasury / outbound_payments /:id

Retrieves the details of an existing OutboundPayment by passing the unique OutboundPayment ID from either the OutboundPayment creation request or OutboundPayment list.

Parameters

No parameters.

Returns

Returns an OutboundPayment object if a valid identifier was provided. Otherwise, returns an error.

Response

List all OutboundPayments

GET / v1 / treasury / outbound_payments

Returns a list of OutboundPayments sent from the specified FinancialAccount.

Parameters

  • financial _ account string Returns objects associated with this FinancialAccount.
  • created object Only return OutboundPayments that were created during the given date interval.
  • customer string Only return OutboundPayments sent to this customer.
  • status enum Only return OutboundPayments that have the given status: processing, failed, posted, returned, or canceled.

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 OutboundPayments, starting after OutboundPayments starting_after. Each entry in the array is a separate OutboundPayments object. If no more OutboundPayments are available, the resulting array is empty.

Response

Cancel an OutboundPayment

POST / v1 / treasury / outbound_payments /:id / cancel

Cancel an OutboundPayment.

Parameters

No parameters.

Returns

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

Response

Last verified 2026-09-24

Is this helpful?