#fireside_best-practices

1 messages ¡ Page 1 of 1 (latest)

tranquil nebulaBOT
#

👋 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/1319018659644969021

📝 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.

wispy crypt
#

Hello there

#

That said, Transfers are synchronous.

#

So if you get a successful response to creating the Transfer then the Payment will be successful.

cunning onyx
#

Oh okay I see. So once it is sent, it is sent. Follow up question for you then. How is Stripe able to reverse the transfers? Are the funds still technically "pending" before the user can withdraw via payout?

wispy crypt
#

It is possible for reversing a Transfer to push a Connected Accounts balance to be negative.

#

But no, the funds are only held until the are available and then they are paid out if automatic payouts are enabled

cunning onyx
#

Okay got it.

#

Another question for you.

#

If I wanted to give the users a status on their payouts to their bank account, I'd use the webhooks to track the events for an automatic payout being created correct (guessing its like payout.created)? Then I am guessing I'd track payout.updated to get the status updates and expected arrival date?

wispy crypt
#

Yep

#

You mostly would just listen for payout.created and payout.paid

cunning onyx
#

Alright, will do. Thanks for the help! I appreciate it.