#noroup_code
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/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.
- noroup_api, 4 hours ago, 90 messages
- noroup_api, 19 hours ago, 22 messages
- noroup_webhooks, 1 day ago, 17 messages
- noroup_webhooks, 1 day ago, 4 messages
Hi there
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
Okay, I see we used to have a support article about this but it's no longer available. This answer in SO Is still correct though: https://stackoverflow.com/questions/66925669/whats-the-recommended-way-to-pass-on-stripe-fees-to-customers-on-subscriptions
I recommend first confirming whether this is legal in your area before you go down the path of trying to calculate
Fees may vary by payment method type so you can also look into this two-step flow to collect payment details first then use those details to determine how to adjust your fees: https://docs.stripe.com/payments/build-a-two-step-confirmation
I am only going to allow domestic cards, so it would be 2.9% + 30c all the way
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