Structs§
- Create
Transfer - To send funds from your Stripe account to a connected account, you create a new transfer object. Your Stripe balance must be able to cover the transfer amount, or you’ll receive an “Insufficient Funds” error.
- List
Transfer - Returns a list of existing transfers sent to connected accounts. The transfers are returned in sorted order, with the most recently created transfers appearing first.
- Retrieve
Transfer - Retrieves the details of an existing transfer. Supply the unique transfer ID from either a transfer creation request or the transfer list, and Stripe will return the corresponding transfer information.
- Update
Transfer - Updates the specified transfer by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
Enums§
- Create
Transfer Source Type - The source balance to use for this transfer.
One of
bank_account
,card
, orfpx
. For most users, this will default tocard
.