Debit connected accounts
Collect funds from a connected account by debiting its Stripe balance.
At times, your platform might need to collect funds from your connected accounts:
- To charge the connected account directly for products or services
- To recover funds for a previous refund
- To make other adjustments to connected account balances (for example, to correct an error)
When your platform is responsible for negative balances, such as with Express and Custom connected accounts, you can debit a connected account’s Stripe balance, transferring funds to your platform balance.
Note
To bill connected accounts where Stripe is responsible for negative balances, create a customer for each connected account and charge them using Stripe Billing subscriptions.
Stripe supports two approaches for doing so:
- Charging a connected account for your platform’s products or services
- Transferring from a connected account to recover funds or make other adjustments
Both approaches create the same flow of funds: a Transfer
is created on the connected account and a Payment
is created on the platform account.
Caution
Using Account Debits requires getting legally binding consent from your connected accounts. This feature is available in Australia, Canada, Europe, Hong Kong, Japan, New Zealand, and the US. Stripe supports Account Debits only when both your platform and the connected account are in the same region (for example, both are in Japan). If you have interest in other regions, contact the sales team. Using Account Debits incurs an additional cost.
Requirements
This functionality is only supported for connected accounts where your platform is responsible for negative balances, including Express and Custom accounts. Additionally:
- The connected account and the platform must be in the same region (that is, both must be in Europe or in the US).
- The
currency
value must match the default currency of the connected account. - Debiting an account can’t make the connected account balance become negative unless you have reserves enabled (on by default for all new platforms created after January 31, 2017) and have a bank account in the same currency as the debit.
- If a connected account has a negative balance, Stripe might auto-debit the external account on file, depending on what country the connected account is in. If the external account hasn’t been verified, the debit can fail.
- The maximum
amount
is 100,000 USD (or equivalent in your currency).
Charging a connected account
The create a charge API call supports providing a connected account ID as the source
value:
The API call returns the Payment
created on the platform account (note: it does not return a Charge
).
This approach is appropriate for platforms that charge their connected accounts for goods and services (that is, for using the platform). For example, a platform can charge its connected accounts for additional fees or services through their Stripe balance, minimizing any need to collect an additional payment method and allowing for nearly instant availability of the funds.
Transferring from a connected account
The second method for debiting a connected account is to make a transfer from the connected account to your platform account. Use the Stripe-Account
header to authenticate as the connected account and provide your platform’s Stripe account ID as the destination
:
This API call returns the Transfer
created on the connected account.
This approach is best for making adjustments within a platform (for example, correcting a payment mistake or recovering any fees you paid to Stripe).
Note
When you make this request, pass your platform’s Stripe account ID. You can find it on the Business settings page in your Dashboard. Its format is similar to acct_
.