#Valentin Hinov
1 messages ยท Page 1 of 1 (latest)
Hello ๐
Don't think there's a simple way to do this
You'd likely want to look at the charges in a payout and track the starting and ending date yourself
https://stripe.com/docs/expand/use-cases#charges-in-payout
Yeah one thought was to to look at the charges and look at get a min/max date of each but it might not be good enough for my use case
What about the created timestamp of a payout. https://stripe.com/docs/api/payouts/object#payout_object-created
Is it safe to say that it won't include any charges created after that timestamp?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Not sure to be honest as it depends on the payout schedule. The most certain way is to just go through payout charges and check minimum and maximum dates
Ok, thank you