#Becca
1 messages ยท Page 1 of 1 (latest)
Hi ๐
Can you be a bit more explicit in the events you are referring to? WE have a list of event names available here:
https://stripe.com/docs/api/events/types
I just want to make sure I provide the most clear answer I can.
the subscription schedule events https://stripe.com/docs/api/events/types#event_types-subscription_schedule.aborted
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
You are correct in your assessment of the expiring event. The released or canceled events will fire depending on the Subscription Schedule end_behavior you configured:
https://stripe.com/docs/api/subscription_schedules/create#create_subscription_schedule-end_behavior
so the completed event will always fire as a pair with 1 of canceled/released?
if I manually cancel/release a schedule via the api will it be the pair of events or just canceled/released?
If you manually trigger the cancel or release for your sub schedule it will fire the canceled and released events.
In the event of the release option, you will also see updated events fire as well
hmm ok