💭 Cancel subscriptions | Stripe Documentation ============================================= !https://stripe.com/docs/billing/subscriptions/cancel#canceling Date: December 10, 2023 Cancel subscriptions Cancel subscriptions immediately or at the end of the subscription period with proration options, invoice handling, and automatic cancellation after failed payment attempts. stripe.com [1] This is a handy guide to cancelling stripe subscriptions. ``` python # Set your secret key. Remember to switch to your live secret key in production. # See your keys here: https://dashboard.stripe.com/apikeys import stripe stripe.api_key = "sk_test_51ODvHtB26msLKqCAPBAo1qkBBuIfT5tQBX6YFWCLMsPixIExxITCRVa9tNCIqkdQS8olhR79NYXsFWBPKsM3LbGO00zEcNQfNI" stripe.Subscription.modify( "sub_49ty4767H20z6a", cancel_at_period_end=True, ) ``` You can even inverse it by flipping `True` to `False` and re activate the subscription. !!! note This post is a thought [2]. It's a short note that I make about someone else's content online #thoughts [3] References: [1]: https://stripe.com/docs/billing/subscriptions/cancel#canceling [2]: /thoughts/ [3]: /tags/thoughts/