Does fetching access token using password grant flow count towards M2M token quota

I am fetching access token for users in backend using auth0 api like this -

    AuthAPI auth = new AuthAPI(domain, clientId, clientSecret);
    AuthRequest request = auth.login(user, pwd)
                              .setAudience(<my API identifier>);
    TokenHolder holder = request.execute();
   holder.getAccessToken();

As i understand this is password grant flow, does this count towards M2M quota ?

Hi @parag.jain

You can tell for certain by looking at your tenant logs to see what is being logged.
This will count as a login towards your MAU total, not against your M2M total.

John