#Mayhul
1 messages · Page 1 of 1 (latest)
Hi, there is not. Instead, what you can do it create a Subscription with the desired parameter, then you can create a Subscription Schedule form that Subscription, https://stripe.com/docs/api/subscription_schedules/create#create_subscription_schedule-from_subscription
The reason I'm using subscription schedules is to create a subscription that automatically cancels itself after N iterations.
It looks like it says that "When using this parameter, other parameters (such as phase values) cannot be set". What's the best way for me to transition the transition the subscription to a schedule?
Do I need to do this:
- Create subscription
- Create schedule from subscription
- Edit schedule to cancel after N iterations
That is correct!