#vlady_error
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/1300580887242604584
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Forgot to say hey, hope you're having a nice day ❤️
Hi there
Do you have a request ID for your attempt to create the Transfer above?
It should begin with req_...
sure thing req_Rn6BHQOMkxxSkc
and I have these 2 charges that I want distribute the money from:
pi_3QEzLsHpguGDrFzs1QPcECdM
pi_3QEzHeHpguGDrFzs0HysCxwH
Here's a screenshot from my app, basically I want to send 2 transfers matching the ticket splits
Ah, do you know if your app is adding up your available and pending balances?
I think so yeah, in my balances the charges say they will be available on Nov 4
On my side, to get the numbers for the transfers I pretty much sum up the total and fee columns and then subtract them to get the net amount that I then split between the artists
So it seems like the money from these charges is not available yet and I'm wondering how to handle that.
Hello! I'm taking over and catching up...
You can only transfer out from your available balance. You would need to wait for the pending funds to move to available before transferring them. In test mode you can use a special test card to bypass the pending balance and go straight to available, but in live mode you need to wait for the natural progression of the funds from one balance to the other.
I take it that’s what the source_transaction method all does, just effectively queueing transfers
Gotcha, would I need to poll the related charges periodically to see if they’re available?
You can listen for balance.available Events: https://docs.stripe.com/api/events/types#event_types-balance.available
Or you can schedule something to check on the balance based on the available_on timestamp on the associated Balance Transaction: https://docs.stripe.com/api/balance_transactions/object#balance_transaction_object-available_on
Thank you 🙏