#xxxxx-reversal-transfer
1 messages · Page 1 of 1 (latest)
Hi there, yes the reversal transfers the amount from connected account to the platform.
what does this reverse_transfer: true do in the refund api?
what's its use?
And if in case the connected account does not have sufficient balance then will it not create a negative balance?
it indicates whether the refund should be reversed. i.e.
reverse_transfer: false -> the connected account keeps the fund -> platform account to cover the negative balance from the refund
reverse_transfer: true -> to pull back the funds from the connected account to cover the refund
what about this - if in case the connected account does not have sufficient balance then will it not create a negative balance
if we perform reversal transfer.
if the connected account has insufficient balance then it's a negative balance that the platform needs to cover.
You can also hold the funds if you have concerns over connected account fund flow https://stripe.com/docs/connect/account-balances#holding-funds
But in our system we are not holding the funds we are directly sending the funds to the connected account. Will if i perform refund and do reverse transfer it will create a negative balance in my connected account. Then how it will be managed?
I see, then you can use reverse_transfer: true in this case to pull back the funds from the connected account to cover the refund.
and negative balance?
Since the fund is transferred back to your platform account, this refund won't result a negative balance.
How, if in case the connected account does not have sufficient balance and we perform reverse transfer , will it not create a negative balance in my connected account?
OK, so you are referring to the connected account here, yes your connected account will have a negative balance if there is insufficient balance.
Do you have a specific problem that you want us to solve?
In our system we have a function to send refunds , in that we are first calling the refund api to send refunds back to the buyer then we are calling the reverse transfer to send money back from connected account to the platform . My question is that if in case the connected account doesn't have sufficient balance and if we perform reverse transfer it will create negative balance. How this will be managed? and what should be the best strategy to handle refunds.
Got it, how how performing the reverse transfer later when your connected accounts have sufficient funds?
As refund use our stripe balance so we goes on performing refund and do not perform reverse transfer ,will it not create negative balance in our platform account?
My shrift is over and my colleague will join this thread to help you soon!
Hi! Have your read this page about "accounting for negative balances"? https://stripe.com/docs/connect/account-balances#accounting-for-negative-balances
that means it will be covered in future transactions. Right?
Can you clarify your question? Also what type of connected account are you using?
Ultimate responsibility for negative balances depends upon the relationship between your platform and the connected account. A connected Standard account is always ultimately responsible to cover negative balances. For Express and Custom accounts, the platform is ultimately responsible to cover negative balances.
I am using Connect
But is it Standard, Express, or Custom?
Custom
Got it, so your platform account is responsible for the negative balance of your Express accounts.
So how it will cover the negative balance?
I recommend reading the link I shared earlier. It mentions this:
To ensure funds can be covered, Stripe holds a reserve on your platform account’s available balance to cover any negative available balances across your Custom and Express accounts.
Yes. My question is that what's the best way to handle refunds , as in my case it is creating a negative balance?