#noroup_code

1 messages ¡ Page 1 of 1 (latest)

tulip latchBOT
#

👋 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/1387200012332830720

📝 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.

gray kettle
#

Hi there

torn crater
#
              const total = successfulPurchases.reduce((sum, product) =>{
                return sum + product.price * product.qty
              }, 0)

              const amountCents = Math.round(total * 100)

              const offloadFee = Math.round(total * 0.029 * 100 + 30);

              console.log("Total: ", total)

              // Create payment intent 

              const paymentIntent = await stripe.paymentIntents.create({
                  amount: amountCents,
                  currency: 'usd',
                  payment_method_types: ['card'],
                  application_fee_amount: offloadFee,
                  transfer_data: {
                      destination: STRIPE_acctID,
                  },
              });
#

Hello

#

Is this the correct logic for offloading the Stripe payment processing fee to the connected stripe account?

#

I purchased 4, $1 transactions. The fees incurred on my account are $1.32

#

I would like to offload this to the connected account which is processing these transactions instead of my platform account

gray kettle
torn crater
#

I am only going to allow domestic cards, so it would be 2.9% + 30c all the way

gray kettle
#

Got it. This could work then. An alternative to this is to charge a larger application fee (that accounts for the fees) then look at the fee after the charge is complete and refund the difference