#alvin_63959
1 messages ยท Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- alvin_63959, 21 hours ago, 18 messages
- alvin_63959, 23 hours ago, 25 messages
Hi there ๐ what's your question that you're looking for assistance with?
Hi toby, so I was downgrading and creating a schedule
I set first phase to iterations = 1 next phase is = 2
question should I just update the subscription schedule and not create the schedule?
because the second one is the existing now I want to create a schedule for that subscription
Sorry, most of that didn't make sense to me. What are you actually trying to do?
question should I just update the subscription schedule and not create the schedule?
You won't be able to update the Subscription Schedule if it's never created.
The second snippet in this section, about how to create Subscription Schedules, shows you how to create a Subscription Schedule for an already existing Subscription:
https://stripe.com/docs/billing/subscriptions/subscription-schedules#managing
okay thanks, will read out the documentation
why it is said
Stripe.StripeException: 'You cannot migrate a subscription that is already attached to a schedule:
I am trying to create a schedule with existing subscription
var subscriptionScheduleOptions = new SubscriptionScheduleCreateOptions
{
FromSubscription = account.LastAccountSubscription.StripeSubscriptionID
};
var subscriptionScheduleService = new SubscriptionScheduleService();
var schedule = subscriptionScheduleService.Create(subscriptionScheduleOptions);
That error indicates the Subscription you're trying to create a Subscription Schedule for is already controlled by an existing Subscription Schedule.
this subscription doesnt have any attached schedule
sub_1OHpd3GFC7Ks3wO6bsMdnKYd
Subscriptions can only be controlled by one Subscription Schedule at a time.
how to manually delete existing schedule?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I cannot do that through stripe dashboard?