#LucaW - fees
1 messages · Page 1 of 1 (latest)
Hi Soma, thanks for the reply. I've another question.
The use case is this:
I need to transfer funds from a connected account into the main account. In this transaction I would like to take too an application_fee_amount/percent. Is this possibile to do in a single transaction or I need to make 2 transaction ?
If you create a transfer with this https://stripe.com/docs/api/transfers/create then funds can only move from your platform account to a connected account (and not the other way around)
If you want to move funds from your connected account to your platfrom, you could use https://stripe.com/docs/connect/account-debits
Yes with account-debits I would use
I can make unlimited requests for account debits right? The important thing is the balance not going to negative
Correct. And note that:
If a connected account balance becomes negative, Stripe may auto debit the external account on file, depending on what country the connected account is in.
https://stripe.com/docs/connect/account-debits#requirements
Ok, thanks a lot