#bachir_anticipated-future-payouts
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/1357376977908138035
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello there
Retrieving the balance should include an available and pending hash, but to know the exact amount available at certain points in the future you would need to list Balance Transactions and look at the available_on date: https://docs.stripe.com/api/balance_transactions/object#balance_transaction_object-available_on
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Hi, basically I just want to have access to these values, but I'm not sure how they map out to the balance object https://docs.stripe.com/api/balance/balance_object. I'd like to avoid having to check every single balance transaction if possible
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
To get a high-level view you can retrieve the Balance and look at the available and pending amounts. You will also need to list Payouts to see if any are currently in transit (designated by their status: https://docs.stripe.com/api/payouts/object#payout_object-status
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.