Hi RevenueCat Community,
I have a question regarding event data retrieval via the API.
We know that when RevenueCat sends webhook notifications, each event payload includes a unique id
for that specific event instance (e.g., INITIAL_PURCHASE
, RENEWAL
, etc.).
My question is: Is there a way to use this unique event ID to directly query the RevenueCat API and retrieve the detailed data for that specific past event at a later time?
For example, if I have an event ID like "evt_xxxxxxxxxxxxxx"
, is there an API endpoint similar to GET /events/{event_id}
where I can fetch the details of this single event?
I understand we can get a list of events associated with a customer through the /subscribers/{app_user_id}
endpoint, and that webhooks provide event details at the time of occurrence. However, I'm specifically interested in whether it's possible to look up a single event's data using only its unique event ID after it has already been processed by our webhook system.
Any clarification or guidance on this would be greatly appreciated!
Thanks!