#woah-its-joe_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/1392899165503356952
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello
Hey there!
This would be if you used Destination Charges and took the payments on your platform before transferring the allotted funds you want to your Connected Accounts.
Otherwise, you can use the Platform Pricing tool: https://docs.stripe.com/connect/platform-pricing-tools
Which works the same as Application fees to take a fee from your Connected Accounts so they cover the Pricing based on your desired rate.
Yes we are using destination charge I believe with :
application_fee_amount: platformFeeAmount * 100, // Platform fee in cents
transfer_data: {
destination: import.meta.env.STRIPE_CONNECTED_ACCOUNT_ID!,
},
Gotcha then yeah you take an application fee or you transfer less than desired.
Usually an Application fee is cleaner.
So that is how you handle the pricing
right now we are being charged "2.9% + 30c", but we want to get charged only "$2 per monthly active account and 0.25% + 25¢ per payout sent" for each transaction connected accounts make.
This is how we are onboarding the users, a small code snippet
controller: {
requirement_collection: 'application',
fees: {
payer: 'application'
},
losses: {
payments: 'application'
},
stripe_dashboard: {
type: 'none',
}
},
Yeah sorry I think you are misunderstanding -- the $2 month and 0.25% + 25 cents are the fees for using Connect here, not related to processing fees.
Overall you should reach out to our Support team via https://support.stripe.com/contact/login about fees -- we really only focus on the API here and can only help with API questions. We have a very limited understanding of fees and our Support team will be able to help you better than we can.
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.
I would think this is more code related as we understand how the fees work. Something just needs to change in how we are doing the transaction from a code perspective, because whatever we are doing is option 1, not option 2.
Unless there is some account level feature support needs to change
But I believe I was told this is something we can choose.
Yeah my understanding is you are already set up for option 2 since you are using:
fees: {
payer: 'application'
},
Those fees are aggregated though -- they don't show up via Charges.
There are still processing fees which you handle via taking an Application Fee from your users.
Really you are better off talking to our Support team on this, they really do know more about how fees work here than we do.
We tried reaching out to the support team twice on this. But being that they are not technical, its not getting very far.
Is there anyway we can escalate this issue?
You would do that via Support -- ask them to escalate you. That said, you are already set up for option 2 where you would handle the fees and take an application fee.
I think your confusion is that you think the $2 + 0.25 is going to show up related to Charges? But that's just not how it works.
We are expecting the stripe fees to be interchange + 0.25% + 0.25c
But we are seeing the fee structure of stripe handles pricing for your uses which is a flat 2.9% + 0.30c
Yeah no that's the misunderstanding. That's just not how it works. The processing fees will always be 2.9% + 0.30. Then there is a separate Connect Fee of $2 + 0.25% + 0.25c when you use accounts where you control fees/losses (basically if the Connected Account user doesn't have a full Stripe account).
Hmm I was told its interchange + 0.25% + 0.25c if you go with option 2
Yeah interchange == processing fees. I'm really sorry but at this point you are going to need to talk to Support further. We aren't experts in fees and I don't want to lead you astray.
If you have any questions about our API then I'm happy to help.
But I really am not the right person to answer questions about fees.