#fundrise_evan
1 messages · Page 1 of 1 (latest)
Our subscription schedules API would be the best way to do that within our API https://stripe.com/docs/billing/subscriptions/subscription-schedules
You can add a schedule to your existing monthly subscription
https://stripe.com/docs/billing/subscriptions/subscription-schedules/use-cases#existing-subscription
And then specify how many more monthly cycles you want before switching to the yearly price
https://stripe.com/docs/billing/subscriptions/subscription-schedules/use-cases#upgrading-subscriptions
Thanks @wicked stone , I'll take a look at these documents, but they sound like what I'm looking for. Is there a way to manage the price switch only using the Subscription API, or do I NEED to use Subscription Schedules?
To do it via the subscription API, you would need to schedule the change yourself. The subscriptions API unfortunately doesn't have a concept of switching to a new plan at a certain time, any updates you make directly on the subscription will happen immediately
Cool, thank you for expanding on that; I appreciate it!