Hi There,
In the docs it is mentioned that
For paid tenants, usage of the Management API is restricted to 15 requests per second (and bursts up to 50 requests).
-
What is the limit for the below management APIs? As when I hit the API with Postman it seems to limit me to 10 attempts every few sec.
-
I understand the rate is 15 requests per second. But what does a burst of up to 50 requests mean?
-
Is the above rate limit per tenant, or per auth0 Paid Account
Background:
Currently in our application we have services that make use of the auth0 Management APIs for:
Get user
GET /api/v2/users/auth0|<UserID>
Create user
POST /api/v2/users
Update user / Block user
PATCH api/v2/users/auth0|<UserID>
Delete user
DELETE api/v2/users/auth0|<UserID>
Because of this we would like to know more about the rate-limits of these APIs to find out how we can best avoid the issue of 429 “Too Many Requests” “Global limit has been reached”.