#wiser_connect-applicationfee
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/1423373039055147171
๐ 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.
- wiserlance_api, 3 days ago, 20 messages
- wiserlance_api, 3 days ago, 29 messages
- wiserlance_api, 6 days ago, 12 messages
wiser_connect-applicationfee
๐ I want to help but need more details. The request id you shared seems unrelated to your ask and is about a Dashboard UI update for a connected account.
You're talking about a "fee" but I'm not sure what fee this means. Do you mean that you for example take 10% of the charge amount for each transaction? If so that's called an ApplicationFee and how to configure it depends on your flow of funds.
Yeah I am asking for the ApplicationFee
Here is the scenerio , When Service Provider Withdraw the funds from platform suppose User request the $20 we have our commissioner fee of 5% of each transaction so how can I do the process ?
I'm sorry I'm struggling to understand what this means "withdraw the funds"
Are you the developer writing the code? If so, can I ask you to map this ask to exact APIs involved instead?
Yeah sure ask for it. I am here the dev
Perfect. So can you map this to a real API method you call on Stripe instead?
Everyone has its own vocabulary to mean different things so it's hard to piece this together. Usually a Connect platform takes a share of each individual payment so you create say a PaymentIntent for $10 and you say "give me an ApplicationFee for $1" by passing application_fee_amount: 100 for example
Sounds good
So in which API should I call this paramerter application_fee_amount as I didn't find such prm in reference doc ?
I am referring this doc
https://docs.stripe.com/api/transfers/create?api-version=2025-08-27.basil
Okay so this is the Create Transfer API right? So you are a Connect platform that collects all the funds in your own Stripe account and later transfer funds to the connected account's balance using the Separate Charges and Transfers flow of funds discussed in https://stripe.com/docs/connect/charges-transfers is that correct?
Sorry for all the questions, trying to show you the crucial bits of information we need from you upfront to help you near instantly.
Yeah Correct
Gotcha, so in that case there isn't a "fee" concept. You charged John $100 and Barry $20 on behalf of the business "InvoiceFreelance". You have $120 in your balance (minus Stripe's fees).
Now when "InvoiceFreelance" wants its funds, you would be the one tracking how much they made, and what part is your own fee and then only transfer the remainder. Say your fee is 10% and you cover Stripe fees yourself, they had $120 in sales and you will keep $12 for yourself so when you create the Transfer it would be for $120-$12 -> $108
Can you map the flow of API for me for the easy reference ? like the procedure ? what API should I use or any reference doc step by step ?
Not really, the whole calculation is fully on your end in your own code completely separate from any API.
You're already using PaymentIntent to charge end customers right? You already have funds in your own account's balance.
The cocnept of "how much do I transfer" or "how much does that connected account have available" is fully in your code
Ah, Got it , I thought there is some API for it