#Akram - Account Debits
1 messages · Page 1 of 1 (latest)
Hello! If you're using Express or Custom accounts, yes: https://stripe.com/docs/connect/account-debits
Hi Markin! 😄
So I understand that there's no way if using standard accounts?
Not using that method. What's your use case?
So I want to charge a variant fee based on the product (line_item), if the session has multiple lines where one is subscription and the other is one-time. Stripe will only allow me to set application_percent_fee, so the idea is to use application_percent_fee for recurring line items and do a debit on one-time lines
Hi @severe pecan! I'm stepping in here for @tacit raptor as he needs to step away. Am I understanding correctly that you are using Stripe Checkout directly on your Standard Connected Accounts and offering both recurring and one-time prices?
And that you want to figure out how to take a fee on each transaction?
Correct and this is an example of what I want to achieve:
Price | App Fee
price_32jw0jwti9t $399 per month | 5%
price_70ksf2f093r $59 per month | 2%
price_238hf9hfoif $10 (one time) | $2
I'm trying to avoid to integrate payouts (charge on the platform and then do transfers to connected account)
Okay that won't work, since you don't set application fees on a line-item basis
You can only set an app_fee_percent based on the total of the invoice
So you would need to calculate this on your end prior to creating the Session if you wanted to achieve this.
The idea is to do average percentage on the recurring items, but my concern is only about the one-time prices. So I want to calculate the fee and then do a back-charge/debit from the connected account
Gotcha, account debits do come with an extra fee themselves -- I believe it is 1.5%.
Oh sorry, Account Debits are not for Standard!
Only Express/Custom...
So yes, there is no way for you to really do what you are looking for with Standard... my recommendation would be to calculate your fee up front and set the app_fee_percent accordingly.
understood, thanks for your help and it will be very great if you guys add application fee on per line item.