I am using auth0-angular with my service. I have a condition to not let the user move to next actions , if account is not verified. I check the verification with the /api/v2/users/${id} api. I need to call this api repeatedly in a periodic manner. Which results in a hit limit. Is there any event driven system for this? Making http calls to get the email_verified data is not a good approach for my case.
You may consider the Authentication API Explorer userinfo endpoint instead of the management API. This endpoint has a higher rate limit, as it is only limited per user, and not per tenant.
Current limits are limited by user ID to 5 requests per minute with bursts up to 10 requests.