#mattsencenbaugh
1 messages · Page 1 of 1 (latest)
You can use this endpoint to filter events: https://stripe.com/docs/api/events/list. The event type you'd be looking for would be customer.subscription.updated
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
There's not a filter for subscription id, so you'd need to manually check that yourself
But also you can just go to the subscription in the dashboard and scroll to the bottom. You'll see a list of events and you can just click on the customer.subscription.updated ones to go through them
Ah got it, I missed that event API. Thank you!