#Pavan-schedules
1 messages · Page 1 of 1 (latest)
@real pecan yes SubscriptionSchedules are quite different from Subscriptions and are fairly advanced. Do you have specific questions/confusion about how the phases work?
https://stripe.com/docs/billing/subscriptions/subscription-schedules/use-cases#increasing-quantity is a good resource at least.
Thanks, this is exactly i am looking for, my use case is when user wants to downgrade quantities of existing subscription , we would like to do that at the end of billing period. Looks like scheduled subscription from existing subscription is the solution for that. Please let me know any alternative solutions.
And also in this what exactly is endbehaviour
After billing period over i want to migrate from existing subscription to new subscription with downgraded quantities
What fields i need to set
yep Schedules are generally a good way to configure a change to happen automatically at the end of a period. The alternative is setting up your system to make the API call at an appropriate time instead.
I'd start by reading the docs and experimenting with some of the sample code there.
Even for updating subscription why the code is SubscriptionScheduleCreateParams
if you have an existing subscription that you want to change then you need to first create a Schedule for it(https://stripe.com/docs/billing/subscriptions/subscription-schedules/use-cases#existing-subscription) so that's generally why.
There is recurring monthly subscription, now user decreased(downgrade) quantities of one of the item, we would like to apply it from next billing cycle and no change for existing billing period. What are the steps to do ? From doc looks like 1. Create schedule subscription from existing subscription. 2. Update quantities for the scheduled subscription, i am not able to understand phases and iterations to clearly code this