#Reja
1 messages ยท Page 1 of 1 (latest)
Hi ๐ that seems to be expected behavior as the Subscription is being controlled by a Subscription Schedule. You will want to updat the Subscription Schedule instead.
but there are no more scheduled changes,
The Subscription Schedule is still attached to the Subscription though, so it is still the object that controls future changes to the Subscription.
so if a scheduled changes is used once then you always need to update trough a other endpoint
or can i detach the schedule?
If a Subscription Schedule is still associated with a Subscription object, then all of the changes to the Subscriptoin need to go through the Subscription Schedule. Yes, you can release the Subscription Schedule from its associated Subscription with this endpoint:
https://stripe.com/docs/api/subscription_schedules/release
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ah, so. If a Scheduled change is already preformed the schedule is not automatic released
And stays connected to the subscription
Correct, the Subscription Schedule is not released until the end of the last billing period where it made changes, so it can remain attached after all of its scheduled changes have been made to the Subscription.
ah, get it. Shame that a other route has to be taken if i want to cancel at period end if it previously had a scheduled changed
but thanks for the anwsers
Any time!