#gabriel-_api
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/1278056295475318784
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello! We're a ticketing platform using connect operating in the US and a few counties.
In Mexico for whatever reason, we have to call PaymentIntents like this, with no application_fee_amount, so that it runs. super crazy.
payment_intent_data: {
...(!mexicanAccounts.includes(organizer.connectAccountID || "") && {
application_fee_amount: platformFee,
}),
...(specialAccounts.includes(organizer.connectAccountID || "") && {
on_behalf_of: organizer.connectAccountID, // for some countries needed
}),
transfer_data: {
destination: organizer.connectAccountID,
},
...(isManualCapture && { capture_method: "manual" }),
},
we're processing abt $200k GMV / mo so this is critical
Do you have an Account ID I can look at?
Error: Stripe doesn't currently support application fees for platforms in US with connected accounts in MX.
Did this error come directly from Stripe? Or is it coming from a 3rd party connector/platform/plugin?
Do you have a request ID for the request that failed?
Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
this is the firebase function that calls it.
it works, has processed over $1M
searching for req id
hi!
I don't know how to find an error 10 days ago
nvm, here I found it!
req_G0oSCfrTLoYJvg
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Okay, so I think the issue here is that the application fee results in funds being transfered from the MX account to the US account, which (if I recall correctly) is highly regulated and unsupportable by Stripe.
The workaround here would be to implement Separate Charges and Transfers, such that the platform accepts the funds from the payment and then removes the fee before transferring the remainder of the payment to the MX connect account. This effectively ensures that funds are only ever flowing to the MX connect account from the platform, and never from the MX connect account to the platform.
https://docs.stripe.com/connect/separate-charges-and-transfers