When an admin user logs into our front end, I want our master list of users to show which users are blocked and their last login time. To accomplish this I was setting up a function in our custom API that would fetch every user’s information from Auth0 through /api/v2/users-by-email. Things were going fine when I was doing a few at a time, but then when I processed 10 or so users in one batch I got a statusCode = 429 Too many requests, Global limit has been reached.
How are we supposed to get user data like “blocked” and “last_login” integrated into our custom API? The rate of 2 per second for free tier, or 15 per second for paid seem really stiff.
Thanks, @markd. Your proposed method works. It does mean I have to change the way I’m loading the “blocked” attribute into my front end users list, but it works with pagination if needed because of crossing the threshold. I appreciate your response.