#chrtze
1 messages · Page 1 of 1 (latest)
hi there!
you can learn more about the pause feature here: https://stripe.com/docs/billing/subscriptions/pause
I tried contacting stripe support about this and they advised me to pause all our existing subscriptions via the dashboard to change the behaviour. very weird.
thanks. the question for me is how to detect a paused subscription (paused from the customer portal). in our webhook, we only check the status of the subscription (which is "active" even if it's paused). is there any other method to check that case?
you can check this property: https://stripe.com/docs/api/subscriptions/object#subscription_object-pause_collection
and you should receive a customer.subscription.updated event when that happens
thanks 🙂 that's what i was looking for. is this sent at the end of the billing cycle or at the moment when you actually pause it?