#awais_sub-sch-upgrade
1 messages ¡ Page 1 of 1 (latest)
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.
- awais_api, 1 day ago, 5 messages
đ 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/1245654585859768380
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
1- is there any rate limit for subscription update?
There is the API rate limit https://docs.stripe.com/rate-limits#rate-limiter
2- i do not want an immediate update of subscription i want to charge new price at the end of this billing cycle how this can be done?
You update the subscription without proration
updating subscription with out proration will update subscription at the end of current billing cycle?
await stripe.subscriptionItems.update(subscriptionItem.id, {
price: newPriceId,
proration_behavior: 'none',
});
will this work?
thank you so much for guide but this test clock seems to test the subscriptions and scenarios. my question is what is the way to update subscription at the end of this billing cycle. i know about cancelation of a subscription cancel_at_period_end works but update at period end i need this one can you guide me for this?
my question is what is the way to update subscription at the end of this billing cycle
I think I already answered this part, is by disabling the proration when updating the Subscription
This is good, I inivte you to test it using Test Clock in order to observe the change
ok thanks
Between, the best option to achieve this usually is using Subscription Schedules:
https://docs.stripe.com/billing/subscriptions/subscription-schedules