#whotney - subscription webhooks
1 messages · Page 1 of 1 (latest)
It's up to you/what works best with your integration flow. I also recommend reading this guide, which goes over multiple different events that are useful to listen to with subscriptions: https://stripe.com/docs/billing/subscriptions/webhooks
Cool, so there is no strict requirement for listening to invoice.* events. Maybe a follow-up question is: when an active subscription gets renewed, will a new customer.subscription.updated event flow through the webhooks? I took a look into https://stripe.com/docs/billing/subscriptions/change and the page you linked, but could not find this specific answer
I don't know that off the top of my head unfortunately, but that event is only triggered when some field on the customer object has changed: https://stripe.com/docs/api/customers/object
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
You could test this scenario out in test mode to see which events are generated
https://stripe.com/docs/billing/testing/test-clocks could help with advancing billing periods
Sounds good! That's super helpful, thank you for the support ✨