#Murilo Akita - update prices

1 messages · Page 1 of 1 (latest)

livid marsh
#

Hello, in this case you will need to update each subscription with the old price to swap them to the new price

idle oriole
#

I understand... Ok, my fear is: being blocked for sending too many requests, is there this danger?

livid marsh
#

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

idle oriole
#

Hm, ok, thx for the support!