#shah_80546

1 messages · Page 1 of 1 (latest)

swift pierBOT
#

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.

serene kettle
#

As in all of the payment intents from your platform? Or the Charge/transfer/balancetransaction objects on the express account itself?

hexed pagoda
#

it will be same details as if user log into express account goes to payments -> All transactions

swift pierBOT
serene kettle
hexed pagoda
#

ok thanks .. one more question is there a way to calculate strip fee in advance meaning we want to pass stripe to customer

potent rock
#

👋 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

hexed pagoda
#

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

potent rock
#

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

hexed pagoda
#

py_3OUWpxQYeSA3G6qh10DVjjwh

#

its a test connect express account on my platform account just FYI

potent rock
#

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

hexed pagoda
#

but i can see charge as succeeded for above charge id

potent rock
#

Sure, becuase in test mode it succeeds ~instantly

#

But it is still async

hexed pagoda
#

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

potent rock
#

I just told you

#

You use a Webhook and retrieve the processing fees once the PaymentIntent/Charge succeds