#sandrayoo
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.
- sandrayoo, 22 minutes ago, 13 messages
If the subscription is still going then it sounds like it has already gotten rid of the schedule
Can you send me the ID of the schedule that you are working with here?
when I make a GET req on the subscription, I do see a stripe subscription schedule returned on the subscription (even though it is a canceled sub).
the id is sub_sched_1O74MgCx65IjJG44YeRGHJrR
Ah, in that case it may not be able to be removed from the subscription. Releasing a subscription is separating the two but leaving the subscription as active.
Looking in to this.
Can you tell me more about your usecase? Is there a reason you want to remove the schedule from a cancelled subscription?
I currently rely on the stripe subscription schedule being present or not in subsequent logic. for a canceled subscription i don't expect the schedule to be present so i want to get rid of the schedules from stripe and sync our data with what is true in Stripe
also thank you for the insight! this is very helpful
Gotcha, would it be feasible to add an extra check to see that the subscription is not cancelled when you see that the subscription has a schedule still attached to it? As far as I know, subscriptions that are cancelled via a schedule like this will always have that property filled
yeah, that is what i am planning to do for now 😅 thank you!