Stripe | Financial Infrastructure to Grow Your Revenue

Stripe | Financial Infrastructure to Grow Your Revenue

4466 articles

Retrieve an InboundTransfer


Retrieve an InboundTransfer

GET / v1 / treasury / inbound_transfers /:id

Retrieves the details of an existing InboundTransfer.

Parameters

No parameters.

Returns

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

Response

List all InboundTransfers

GET / v1 / treasury / inbound_transfers

Returns a list of InboundTransfers sent from the specified FinancialAccount.

Parameters

  • financial _ account string Returns objects associated with this FinancialAccount.
  • status enum Only return InboundTransfers that have the given status: processing, succeeded, failed 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 InboundTransfers, starting after InboundTransfer starting_after. Each entry in the array is a separate InboundTransfer object. If no more InboundTransfers are available, the resulting array is empty.

Response

Cancel an InboundTransfer

POST / v1 / treasury / inbound_transfers /:id / cancel

Cancels an InboundTransfer.

Parameters

No parameters.

Returns

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

Response

Last verified 2026-09-24

Is this helpful?