#haulc
1 messages · Page 1 of 1 (latest)
Hello, good question. Which connect charge flow are you using here? Direct charges (charges made directly on the connected accounts) or destination charges?
Thanks for supporting. i'm using charges made directly on the connected accounts
Gotcha, it looks like our docs suggest refunding the payment with refund_application_fee=false and then refunding that portion of the application fee separately https://stripe.com/docs/api/fee_refunds/create
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
This section of the direct charges doc talks about it a bit. When refund_application_fee=true is used, a proportional amount of the application fee is refunded. So if you refunded 90% of the total payment, you would keep $1 of the application fee, but it sounds like you want to refund all but some portion of the fee https://stripe.com/docs/connect/direct-charges#issuing-refunds
if i refund 90% of total payment. can end user get full amount they pay?
i want to keep $1 for application fee. this fee the restaurant will pay that
my business is the same grab food or uber eat. My platform take money from client and we are responsible for calling the shipper and will pay the shipping fee for the shipper. and then will transfer for restaurant food fee. for example. we get $100 from end user. in this case. $10 for shipping fee and application fee ($1 application fee, $9 for shipping fee). 90$ for food fee. when order is canceled. we want to keep $1. because this order is processed.
In that case it sounds like you want to do the refund_application_fee=false flow
It will refund the fee in two parts but the customer will still get all but $1 of their payment here
but $1 of their payment here. it's mean the customer will get $99. that's right?
Correct
Yes, you would refund the payment fully and with refund_application_fee=true and then you would separately charge the connected account $1
Trying to think of how best to do that with a standard account
thanks for your suggest. come back to payment intent. just have application fee and amount? that's right? bro