#jhampton
1 messages ยท Page 1 of 1 (latest)
Hello ๐
I don't think we have an endpoint for this as such unfortunately.
Usually, the BalanceTransaction object should reflect when the funds will be settled and will be available in the Stripe balance
https://stripe.com/docs/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.
Thanks @lime topaz! Having that endpoint would be amazing! ๐
Thanks for the suggestion about BalanceTransaction. Apologies for the follow up question - but we would basically need to look up each "payment" within Stripe that we are trying to reconcile, find the balance transaction id, and once we have the balance transaction - we could then use the available_on field as our date criteria vs the updated_at date within our system. Am I following?
or possibly even just "status": "available",
Thanks for the suggestion about BalanceTransaction. Apologies for the follow up question - but we would basically need to look up each "payment" within Stripe that we are trying to reconcile, find the balance transaction id, and once we have the balance transaction - we could then use the available_on field as our date criteria vs the updated_at date within our system. Am I following?
That is correct, with manual payouts you'd need to track the transaction history on your own.
If you were to use automatic payouts then you'd do something like
https://stripe.com/docs/expand/use-cases#charges-in-payout
But with manual payouts, you're incharge ๐
got it - thank you so much for pointing me in the right direction!