#anadalg
1 messages · Page 1 of 1 (latest)
Hi there!
hi!
You can Cancel or Release a subscription schedule:
https://stripe.com/docs/api/subscription_schedules/cancel
https://stripe.com/docs/api/subscription_schedules/release
after releasing a subscription schedule I can still get the object
will this subscription schedule object be automatically deleted?
or need to be deleted explicitly?
What do you mean by "still get the object"? You want to completely delete the Subscription schedule object from Stripe?
If so, that's not possible.
I mean, once released, I can stil do https://api.stripe.com/v1/subscription_schedules/sub_sched_1234
Yes, that's expected. What's the issue with this?
I just want to delete the subscription schedule obj to avoid having "garbage" objects
its not a problem for me
just to clean unneeded "garbage" objects
Got it, but that's not possible. Stripe keeps objects even after they are canceled. And since there's no limit to the number of objects you can have in your Stripe account, you can simply ignore them.
Perfect, thank you!