#machineau

1 messages · Page 1 of 1 (latest)

broken nexusBOT
tribal wharf
#

👋 How can I help?

spark palm
#

We have a stripe standard connect implementation

#

Where the customer pays and the payment is sent to the owner of charging stations, and we take a platform fee along with stripe fee. The calculation and split seems to be incorrect, and i want to understand how it correctly works.

#

If i give you a transaction number, would you be able to say how much the split was?

#

ch_3NFRPiHwT4akAWyk0XR2oxrL

#

this is the stripe transaction id

tribal wharf
#

What do you mean by incorrect?

#

With destination charge, Stripe fee is collected from platform

spark palm
#

in this, can you tell me what about is going to us as platform, what amount is taken by stripe and what amount was taken by stripe for this transaction ?

tribal wharf
#

With destination charges, Stripe will take Stripe fee from the platform instead of connected account

spark palm
#

but is there a way for each transaction where we see the split like - Customer paid, Platform Fee ( stripe fee), end owner payment?

#

For example in this transaction -

Customer paid - $3.23
Platform Fee - $0.75
Stripe Fee - $0.36
Connected account Paid - $2.48

#

is the above correct? if so, where can i see the platform getting paid for each transaction in my stripe account?

tribal wharf
#

Yes! You can use Payment Intent retrieval and expand latest_charge.balance_transaction:

You will find the following them in the response:

  1. Customer paid: amount field
  2. Application fee to platform: application_fee field
  3. Stripe fee: latest_charge.balance_transaction.fee_details.amount
  4. Amount that the connected account received: You can compute with item (1) - item (2)
spark palm
#

ok, where in my stripe dashboard / portal, can i see how much the platform received after the stripe fee for that transaction ?

#

i only see the total amount as succeded, but unable to see anywhere what we make from each transaction clearly

tribal wharf
#

Under Payment details section

spark palm
#

this does not show what i am asking though

#

the net is what the connected account gets. I can see the stripe fee, and i can do a collected fee - stripe fee to get the payment that we would make. But where do i see this physically being desposited to us for each transaction ?

tribal wharf
#

I'm afraid this is not shown in the Dashboard page. You'd need to calculate yourself

spark palm
#

i am assuming for this transaction this is 0.75 - 0.36 = 0.39

tribal wharf
#

Yup! The after Stripe fee information is not available in the Dashboard