#machineau
1 messages · Page 1 of 1 (latest)
👋 How can I help?
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
In https://dashboard.stripe.com/logs/req_SJvqGayzsJs945, it's a destination charge with payment amount is AUD 3.23 and application fee to platform is AUD 0.75
What do you mean by incorrect?
With destination charge, Stripe fee is collected from platform
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 ?
Youn may refer to the Destination Charges fund flow here: https://stripe.com/docs/connect/destination-charges#flow-of-funds-app-fee
With destination charges, Stripe will take Stripe fee from the platform instead of connected account
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?
Yes! You can use Payment Intent retrieval and expand latest_charge.balance_transaction:
- Payment Intent retrieval: https://stripe.com/docs/api/payment_intents/retrieve
- Expand an object: https://stripe.com/docs/api/expanding_objects
You will find the following them in the response:
- Customer paid:
amountfield - Application fee to platform:
application_feefield - Stripe fee:
latest_charge.balance_transaction.fee_details.amount - Amount that the connected account received: You can compute with item (1) - item (2)
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
You can find them in payment intent page. For example: https://dashboard.stripe.com/payments/pi_3NFRPiHwT4akAWyk0qZYe1Bs
Under Payment details section
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 ?
I'm afraid this is not shown in the Dashboard page. You'd need to calculate yourself
i am assuming for this transaction this is 0.75 - 0.36 = 0.39
Yup! The after Stripe fee information is not available in the Dashboard