#exspiro_paymentintent-customer-fees

1 messages ยท Page 1 of 1 (latest)

primal spruceBOT
#

๐Ÿ‘‹ 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.

dim walrus
#

Hi ๐Ÿ‘‹

What kind of integation have you built or are you building?

gusty radish
#

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

dim walrus
#

When you say the Payments API, do you mean Payment Intents?

gusty radish
#

yeah

#

if there is a dashboard option too that would be even better

dim walrus
#

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.

gusty radish
#

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?

dim walrus
#

Correct. We do not modify the amount you are charging your customers in any way

#

That is something your code controls

gusty radish
#

got it

#

thats helpful!

#

ty so much

dim walrus
#

Happy to shed what ๐Ÿ’ก I can ๐Ÿ™‚