#lukun_best-practices
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1313438406461751316
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- lukun_error, 4 days ago, 28 messages
-Hold the funds and only allow sellers to withdraw them once the reservation is completed. For this solution, I see several constraints: from what I've seen, Stripe can only hold funds for a maximum of 90 days in Europe. It's also bad for sellers who might have to wait a long time to get their money. And it also requires me to use custom accounts which require more implementation work, because from what I understand, in standard and express accounts, since users have access to their dashboard, they can manually request withdrawal of funds immediately.
-Another solution would be for Stripe to handle liability in these cases (like PayPal with disputes): in case of refund, Stripe takes responsibility for debiting the seller if their account balance is insufficient, and if they can't do it, they still refund the customer.
Does this offer exist? On what type of connected account? Is there a specific pricing?
Otherwise, do you have any other ideas about Stripe features that could help solve this problem?
hiI! your first option would be the recommended one really, hold funds using manual payouts.
The second one does not exist no, if you don't have sufficient balance and try to issue a refund it instead generates a 'pending' refund, and you need to write us money to fund your account to cover your negative balances. (https://support.stripe.com/questions/fix-the-negative-balance-on-your-account)
in standard and express accounts, since users have access to their dashboard, they can manually request withdrawal of funds immediately.
it's only Standard where that would apply, Express works too for manual payouts.
Thanks for your answer ! So for express accounts, i can disable the manual payout ? What about the 90 days limit ? Do you know how to deal with it ?
So for express accounts, i can disable the manual payout ?
yes
https://docs.stripe.com/connect/payouts-connected-accounts#payout-management-configurations
"For connected accounts with access to the [...] Express Dashboard, the account holder manages their external payout accounts (bank accounts and debit cards), but the platform** can schedule payouts**."
What about the 90 days limit ? Do you know how to deal with it ?
ultimately you as the platform are responsible for issuing the refund to the customer and having the balance for that. If you can't reverse a previous Transfer, maybe do an Account Debit https://docs.stripe.com/connect/account-debits . Maybe consider other alternatives like topping-up your platform balance from general funds as-needed https://docs.stripe.com/get-started/account/add-funds . Maybe build some other way to get funds from the connected account(like collecting their card details and charging it as a customer on your platform). I don't have any specific advice about this.
Thanks ! Will will read about this
To start i think that i will just forbidden users to book more than 90 days in advance, that will be enough for 99% of use cases and easier for me. Once i will have more data it will be easier for me to calculate the risk and chose the right solution
Thanks for your help
yeah like for example maybe this happens really rarely and when it does you can just wire some petty cash to top up your balance for issuing refunds.