#votsircp-sub-cancellation
1 messages · Page 1 of 1 (latest)
heya! give me a while to check the documentation, i'll get back to you as soon as possible
sounds good, thank you
@worn mica if you use https://stripe.com/docs/api/subscriptions/cancel -> this will cancel the subscription immediately, is this what you're looking for?
Otherwise, the other method you posted is probably what you want
so 3 methods now
update, cancel, delete
😄
i guess what i want is for the user to not be charged anymore
so stop recurring payments
it's a bit more complicated than that actually.
When you want the user to not be charged anymore, do you want it to be immediate?
sounds like cancel is the same as update with option cancel_at_period_end
hmmm, let's say the user subscribes to a monthly service today, and in two weeks decides to cancel. this means the user shouldn't be charged anymore, that's all
maybe let me rephrase my question, i could be a user using a monthly service - if i cancel now, can i still continue to use the service till the end of the month?
or my service will stop immediately?
ah, i see. good question. i would say continue until the end of the subscription period
alright, then you should update the subscription and set cancel_at_period_end=true
https://stripe.com/docs/api/subscriptions/update#update_subscription-cancel_at_period_end
beautiful, thank you
if you use delete, my subscription will stop immediately. i.e. i won't be able to use the service anymore as of this point in time