#edutomesco-subscriptions
1 messages · Page 1 of 1 (latest)
Hello! When you say "uncanceling a subscription" can you be more specific - do you have an example request you're making to un-cancel the sub?
Gotcha - so you're just setting cancel_at_period_end: false to reactivate/make sure the sub doesn't cancel
In that case, the customer.subscription.updated event should still give you the information you need. You need to check data.previous_attributes (https://stripe.com/docs/api/events/object?event_types-payment_intent.payment_failed#event_object-data-previous_attributes) on the event, which will tell you the specific parameters that have changed
So if you're getting a customer.subscription.updated event after setting cancel_at_period_end: false then I'd expect to see cancel_at_period_end: true in the previous_attributes in the event