#Murilo Akita - update prices
1 messages · Page 1 of 1 (latest)
Hello, in this case you will need to update each subscription with the old price to swap them to the new price
At the moment we don't have an automatic way to switch all subscriptions from price A to price B. So the standard way to do this is via a standard subscription update https://stripe.com/docs/billing/subscriptions/upgrade-downgrade
I understand... Ok, my fear is: being blocked for sending too many requests, is there this danger?
Our rate limiting limits you to 100 requests per second. To avoid that here, you can either do the updates serially or you can just pay attention to timeouts and have any process that gets a 429 error back off for one second + some random fraction of a second before retrying https://stripe.com/docs/rate-limits#handling-limiting-gracefully
So you won't get permanently blocked or anything, but it would likely be best to not do too many of these updates per second especially if your integration is already doing that
Hm, ok, thx for the support!