#tonyp-connect-sct
1 messages ยท Page 1 of 1 (latest)
Hello ๐
Give me a moment to catch up here and I'll respond as soon as I can ๐ Thanks
Hi taking over for hanzo as they have to step out. Apologies for the delay! Discord has been super busy today
Give me a moment to read over your question
We would like to avoid negative balance on the connected account
Why would this go negative?
With Custom accounts the platform should be responsible for the refund
Just wondering what your current flow looks like (in more detail)
Hi, no problem !
with daily payouts, the balance is at 0 from time to time
If I'm not mistaken, at the moment when we manually refund a payment it is the connected account balance that is affected
It depends how you do it: https://stripe.com/docs/connect/destination-charges#issuing-refunds
But if you are using destination charges, which is recommended with custom accounts, the platform is responsible
in our current flow, we're handling refunds manually, so we're just using the payment intent api with the on_behalf_of parameter to handle payments between our b2b clients and their customers
okay, so the only way to "hold" the funds during a certain period of time (to handle refund if needed) is to keep them on our platform account ? and not use the on_behalf_of parameter, but request a transfer to the connected account later on ?
You could do it that way, or you could just switch to manual payouts on the connected account or increase the automatic payout interval and hold funds for longer
Depends on if you need on_behalf_of or not
I see, but manual payouts and increasing payouts interval are not options for us, so I guess we'll go for that
I saw also this : https://stripe.com/docs/charges/placing-a-hold
but the hold is only for 7 days, and we could have payments more than 7 days ahead
The best thing to do in this situation is to just ensure you have enough balance in the accounts. And, if there's not enough balance to initiate the refund, you can always retry later once you have enough balance
But I recommend reading this: https://stripe.com/docs/refunds
Refunds can have a pending status
As long as you're okay for the delay due to insufficient balance there shouldn't be an issue with your current flow
Alright, I'll dig into that