#iam_fee-calculation
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1232011616661278741
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- iam2327_code, 5 days ago, 12 messages
At the moment, we don't have a setting to automatically add the Stripe fee to your application fee. You can try to pre-calculate it https://support.stripe.com/questions/passing-the-stripe-fee-on-to-customers
Otherwise it may make sense to change to a separate charges and tranfers flow, which would mean that you could look at the payment and its fee before deciding how much to send to the user
https://docs.stripe.com/connect/separate-charges-and-transfers
yeah makes sense! I think in my case calculating fee first is valid cause I want to stick with payment intent so I just want to make sure on two things:
what's the formula for calculating stripe processing fees? and is formula changed throughout time/region?
iam_fee-calculation
@covert hare the formula depends on a lot of factors such as your platform account's country, the connected account's country, the payment method being used, whether the card is international or not, and many more. You'll have to carefully review https://stripe.com/pricing
is there any method for calculating stripe fees by passing the factors? and one more thing is there any way to get processing fee for payment intent i.e create payment intent and get only processing fee (if it returns) and not confirm the payment intent just get the processing fee and create new one it's not good approach but if it makes sense?