#nathan-event-model
1 messages · Page 1 of 1 (latest)
@jagged heron we don't really have something like this. Events are complex because that can describe almost ever API Resource that we have in our API so you have to deal with this on a case by case basis based on which Event types you are handling
nathan-event-model
Not to be rude, but are you a person? Just trying to understand how support works.
Do you have json schema definition files for each of the Stripe webhook events? I'm happy to handle these individually.
yep I am a human. And we don't have anything close to this I'm sorry. There's an example on https://stripe.com/docs/api/events/object but that's the best you will get.
The next step is to read that part of the API Reference, understand how the Event model works and what is inside data.object https://stripe.com/docs/api/events/object#event_object-data-object where we explain that this would be any of the existing API Resources.
For example
payment_intent.createdwould have a full PaymentIntent object in there https://stripe.com/docs/api/payment_intentscustomer.createdwould have a full Customer object: https://stripe.com/docs/api/customers/object
etc.
I'm happy to explain further if you have more specific questions but what you are looking for does not really exist
Ok - thanks for the support.