#jagadeesh_docs
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1266270650063130644
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- jagadeesh_docs, 2 days ago, 6 messages
- jagadeesh_api, 2 days ago, 39 messages
hello! this is probably the guide that you would want to refer to instead - https://docs.stripe.com/billing/subscriptions/webhooks. For your use case, you would probably want to refer to subscription_schedule.updated
subscription_schedule.expiring - is sent 7 days before the Subscription Schedule expires which is essentially 7 days to the end of the last phase
in case you haven't seen this yet, you can use test clocks to mimic the passing of time : https://stripe.com/docs/billing/testing/test-clocks
is there any event which will happen while transition of the phases in schedule.
For eg: i have 3 phases
current phase 1: end tomorrow
phase2: ends after 1 week,
phase 3: end next month
while schedule transition from one phase to other is there any event to recognize.
what does transition of the phases in schedule mean? If you want to know when the Subscription Schedule has transitioned to another phase, you can check the subscription_schedule.updated event
okay.
actually i have a new plan which should be applicable from next billing period of the customer. for that i have added a future phase with new priceId. When this phase is active then i have to update my db where i am storing the current plan id and i have to change that to new plan when this current billing period ends. so for recongnizing i want to know which event can be helpful to me.