#kitem-subscription schedules
1 messages ยท Page 1 of 1 (latest)
I'm trying to remove a subscription schedule from a subscription
basically, something like this request req_PeoYGU5fPU2apl
that was managed by the dashboard of Stripe, but with the APIs
I've retrieve the subscriptionSchedule
$subscriptionSchedule = \Stripe\SubscriptionSchedule::retrieve([ 'id' => $idSubSchedule, ]);
And canceled it with
$subscriptionSchedule->cancel();
I got subscription canceled too
you need to release the schedule using this API 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.
but releasing will not update the subscription, correct?
it will do the same thing that the request you shared did
Awesome, thanks ๐