#lukafinderle
1 messages · Page 1 of 1 (latest)
the diagram at https://stripe.com/docs/connect/destination-charges#flow-of-funds-app-fee shows how the fees work
So the Connect Fee is being taken only from the application fee?
E.g. if we send amount=20, application fee=10 the fee is being taken from 10 not from 30?
well there is no "30" in that case
you're charging the customer $20, so if we pretend the Stripe fee is 3%+20c that's 80c, and that's the Stripe processing fee taken. And the $10 application fee is taken. So the connected account gets 20-10, and you get 10-0.80
possibly you mean something else by "Stripe Connect Fee" that is not the processing fee, could you clarify?
Ou, so the application fee needs to be included in the amount, right?
depends what you mean/what your goal is
the end-customer is just charged whatever you tell us to charge, in the amount field of the PaymentIntent (1000/$10.00 in the code you posted above).
Ok, one more question just to confirm everything
So, if we send amount=2750 and application_fee_amount=750 then the customer receives 20€, stripe fee is 750 * X and our Platform receives 750 - 750 * X ?
Isn't there another fee that stripe is charging for the payout?
no, the Stripe fee is 2750*X
e.g .if our pricing is 1.5% + €0.25 (https://stripe.com/ie/pricing), it's 1.5% of the amount you're charging, the €27.50
otherwise what you say is correct