#HK6-subscription-billing-cycle
1 messages · Page 1 of 1 (latest)
Prices are immutable so it is not possible to do what you're after. You have to create a new Price and switch customers to it
The best option here is to use subscription schedules https://stripe.com/docs/billing/subscriptions/subscription-schedules. You can create one from an existing subscription and then you would add a second phase that follows the current one but moves to the new Price/period.
It's still dev work but it won't mess with your data and it will switch people exactly at the end of their current period which is exactly what you want!
Thanks a lot