#ubi
1 messages ยท Page 1 of 1 (latest)
Our retention goes back 30 days, so you'll be limited by time unfortunately. There isn't a way to get the event bodies that are more than 30 days old
You can backfill the past 30 days with the API or by resending events through the CLI but unfortunately we don't offer older data https://stripe.com/docs/api/events/list
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Would I then need to scan all the APIs to consume the information?
How would you go about importing all the data? 
For each Endpoint, loop for each paging, import data?!
What information are you looking for? You wouldn't be able to get historical records of how data changed but you can get the current state of any object via the API
Right, I could have an SnapshotImported event as the genesis and continue with the webhooks after that I am guessing
What info? All of them honestly! Whatever makes it easier for me to query a read-model projection in my side; or be able to react to events from my event bus
I am trying to simplify as much as I can dealing with failiures at the webhook importing level, and having to deal with your retention policy
๐ I'm stepping in for my teammate! Give me a minute to catch up
Without having more information, I think what you'll want to do here is start listening for all events you care about now and start to populate your database with this information. If you receive an event for an object you don't have in your database, retrieve that object and use that to backfill the current state of that object
right right