#_lil_nasty_
1 messages · Page 1 of 1 (latest)
If the subscription is still active, you can simply set cancel_at_period_end to false or unset cancel_at depending on which one that you used
But if the subscription is already fully cancelled then it cannot be uncancelled and a new subscription will need to be created.
I see, so in reality when a sub is cancelled we should stop provisioning access.
To accomplish what I'm describing we should simply set cancel_at_period_end to true and then if they change their mind reset that to false.
By doing the above the subscription will move to cancelled at current_period_end (they won't be charged again, right?) and we will remove access. Later, if they want to re-sub we will simply create a new subscription, right?
For cancel_at_period_end the subscription is cancelled without the user being charged again.
So yep, that all sounds like a good way to impliment this
Ok, perfect! Thanks for the help 🙂