#roshe10_best-practices
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/1346041828872290375
đ 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.
- roshe10_docs, 3 days ago, 39 messages
- roshe10_webhooks, 4 days ago, 17 messages
- roshe10_best-practices, 5 days ago, 26 messages
- roshe10_api, 5 days ago, 9 messages
Not before the transaction, unfortunately, however you can do a test Transaction, then look at its Balance Transaction's fee breakdown, then reverse-calculate an amount 10x so that you will get $100
so there is no option either for the customer to select does they want the fee to be included or to give it on top of it (since it's about donations) ?
You can present a selectionbox/ checkbox for them, then accordingly calculate the amount to generate a new PaymentIntent
I mean within the hosted checkout session on stripe side ? not with modifying my page
hi! I'm taking over this thread.
no, you cannot show on the Checkout Session the Stripe fee.
so it has to be deducted from the shown price ? is there a way to use some flag for checkout where it will display different price (with or w/o fees) at least ?
so it has to be deducted from the shown price ?
what do you mean? if the user needs to pay $100, then they pay $100, and you'll receive around $97 (the rest goes to Stripe).
is there a way to use some flag for checkout where it will display different price (with or w/o fees) at least ?
if your set the price to $100, it will show $100 on the page.
I meant that if I set price to 100, to show user ~104 automatically (using some flag) in order to cover fees
btw is there any document where the fees are defined in order to do fee calculations manually and show to the user that if there is no other option ?
to be more clear and give you some context... the thing is that we are doing donations, so it's not like a fixed price of some product, so we want to be transparent to the user and let them know exactly how much went on what
I meant that if I set price to 100, to show user ~104 automatically (using some flag) in order to cover fees
not possible. but that something you can do on your end: try to guess the Stripe fee, and increase your price accordingly.
btw is there any document where the fees are defined in order to do fee calculations manually and show to the user that if there is no other option ?
https://stripe.com/pricing
to be more clear and give you some context... the thing is that we are doing donations, so it's not like a fixed price of some product, so we want to be transparent to the user and let them know exactly how much went on what
you could write on the Checkout Session itself something like: "2.9% of the amount are for payment processing fees."
the issue is that we don't know which payment method user will use, and that could change the fee right? whether it's gonna be card, international card, ach, etc
the issue is that we don't know which payment method user will use, and that could change the fee right?
true
there no real solution to this. you can't know the Stripe fee in advance, since it depends on the payment method used.
you could try to compute an average, and say something like "about 4% of the amount are for payment processing fees". but somethimes it will be less, sometimes it will be more.