#amit_02785
1 messages · Page 1 of 1 (latest)
Hi
If the user wants to pause and resume their subscription, how can we accomplish that?
i invite you to follow this guide:
https://stripe.com/docs/billing/subscriptions/pause
You can find the pause related event in this subscription's webhook guide:
https://stripe.com/docs/billing/subscriptions/webhooks#events
Be aware that, if you pause the paymen tcollection, you wan't receive customer.subscription.paused because invoices continue to be created during that time period.
So, for handling the webhook, I need to use the customer.subscription.updated event instead of the customer.subscription.paused and customer.subscription.resumed events.
cause for this methods https://stripe.com/docs/billing/subscriptions/pause Those events are not works.
yes you can use customer.subscription.updated event to track that
Okay Thanks,