#emng-sub-cancellation
1 messages ยท Page 1 of 1 (latest)
Hello ๐
It depends on your integration logic to be honest.
Are you trying to pause/unpause it? or are you trying to start a new subscription once cancelled?
I'm thinking of a case where a customer cancels a subscription but then changes their mind. Just wondering how I restart the subscription and how do I ensure they are only charged after the previous subscription ends
Ah okay I see.
We have a guide here
https://stripe.com/docs/billing/subscriptions/cancel
You can set update the subscription to cancel_at_period_end set to true
If they do decide to come back, you can update it back to false
You won't need to create a new subscription
if cancel_at_period_end has passed, do I need to just create a new subscription object for them? or update the existing one?
ah in that case, you'd need to create a new one
NP! ๐ Happy to help