#Ravg
1 messages ยท Page 1 of 1 (latest)
Hi there. You would create the schedule from the existing subscription: https://stripe.com/docs/billing/subscriptions/subscription-schedules/use-cases#existing-subscription. Then, you would add a new phase corresponding to the scheduled update, where you would pass all subscription items except for the one you want removed: https://stripe.com/docs/api/subscription_schedules/update#update_subscription_schedule-phases-items
Oh I see. So any existing subscription items will be removed if they are not present in the new subscription schedule's phase?
Correct. Since it's a new phase, you will need to specify everything you want included in that phase
I recommend trying this out in test mode
You can also use test clocks to advance time and see how it works: https://stripe.com/docs/billing/testing/test-clocks
It's clearer for me now ๐
I will also check the test clocks and how to use them
Thanks a lot!