#jhampton

1 messages ยท Page 1 of 1 (latest)

foggy palmBOT
lime topaz
#

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

near spear
#

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",

lime topaz
#

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 ๐Ÿ™‚

near spear
#

got it - thank you so much for pointing me in the right direction!