#exspiro_paymentintent-customer-fees
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/1294002230814445672
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi ๐
What kind of integation have you built or are you building?
using payments api to handle CC transactions in our b2b app
basically want a way if customer uses CC that we can add a surcharge = to the amount of the stripe CC fee
couldnt find an easy way to do this
When you say the Payments API, do you mean Payment Intents?
No there isn't. With Payment Intents your code is the only thing that determines how much a customer will be charged by specifying the amount . https://docs.stripe.com/api/payment_intents/create#create_payment_intent-amount
Any fees or additional charges you wish to pass on the customer would need to be calculated and added such that the value passed in the amount parameter captures all of them.
ah got it - so the state by state compliance would need to be handled by our logic, stripe doesnt have any out of box solution to manage that?
Correct. We do not modify the amount you are charging your customers in any way
That is something your code controls
Happy to shed what ๐ก I can ๐