Get Users Who Granted a Specific Application via Management API in Auth0
Jun 9, 2026
Overview
This article outlines the procedure to retrieve a list of users who granted a specific application using the Management API.
Applies To
- Auth0
- Management API
- Application Programming Interface (API)
- Authorized Applications
- Users
- Grant/Consent
Solution
Follow the steps below to retrieve the list:
- Query the Get grants endpoint.
- Include the
client_idparameter for the target application. - Retrieve the
user_idvalues from the JSON response.- The response format appears as follows:
[ { "user_id": "auth0|abc...", "audience": "...", "scope": [...], "clientID": "...", "id": "..." }, ... ]
- The response format appears as follows:
For the details about User Grants, see the User Consent and Third-Party Applications documentation.