#shah_80546
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. 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.
- shah-acss-mandate, 22 hours ago, 53 messages
- shah_80546, 2 days ago, 13 messages
As in all of the payment intents from your platform? Or the Charge/transfer/balancetransaction objects on the express account itself?
it will be same details as if user log into express account goes to payments -> All transactions
If you do the list charges call as the connected account, you will get those transactions https://stripe.com/docs/api/connected-accounts
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ok thanks .. one more question is there a way to calculate strip fee in advance meaning we want to pass stripe to customer
👋 stepping in here as Pompey needs to step away
To effectively do the above you would need to build your integration so that you know the PaymentMethod type before you confirm your PaymentIntent
So that depends a little bit on your integration
However we do provide https://support.stripe.com/questions/passing-the-stripe-fee-on-to-customers which shows you how you would then calculate the amount
i ran charge api for my connected account , api does not show net amount or stripe fee in response , also there were transaction related debit instant verification they are also not included in this api response
Can you provide the Charge ID for the example you are looking at?
It sounds like this is an async PaymentMethod? A bank debit?
In which case the processing fees aren't present until the Charge succeeds
And debit instant verification fees are not tied directly to a Charge
Those are aggregated and charged separately
py_3OUWpxQYeSA3G6qh10DVjjwh
its a test connect express account on my platform account just FYI
Yeah so as I noted this is async. So the processing fees are present when the Charge succeeds, which is when the balance transaction is created
For async Payment Methods you want to use a Webhook to listen for payment_intent.succeeded and then retrieve the data at that point
but i can see charge as succeeded for above charge id
and when i go all transaction in my dashboard i can see all stripe fee and everything and same thing i want to show on my portal throught api
so how to do that
I just told you
You use a Webhook and retrieve the processing fees once the PaymentIntent/Charge succeds
For things like instant debit verification fees, you list out your Balance Transactions of the relevant type: https://stripe.com/docs/api/balance_transactions/list#balance_transaction_list-type