#sparx_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/1242560542778851471
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Manual payout would be one way and Using Separate Charges & Transfers flow would be the other way where you only transfer funds to the connected account after the order has been fulfilled
Is there any way to get a webhook for when a transaction is no longer pending but available? That's my main concern with the manual payout way, I'm not sure how to find that out without sending an individual API call for each transaction in Stripe.
I believe we send balance.available webhook event when the funds become available
Will that event provide details of which specific transactions were made available?
No, that event payload contains a Balance object
https://docs.stripe.com/api/events/types#event_types-balance.available
So back to individual API calls then. Do you know if there's a limit to how long it can take to go from pending to available, where after that time I could assume it's available?
I think the availability varies by account type and the country it is in afaik. This doc might help: https://docs.stripe.com/connect/account-balances
Ah looks like we document your usecase here: https://docs.stripe.com/connect/account-balances#holding-funds
The recommendations are the same as I explained before