Get or Export Users from the Auth0 Tenant
Apr 6, 2026
Overview
Applies To
- Users Export
- Management API Calls
Solution
There are 2 options:
- Use the POST /api/v2/jobs/users-exports endpoint to obtain a JSON/CSV export of users that runs asynchronously.
- In the request body, the fields to be exported can be added:
{"name": "last_login",},
{"name":"logins_count"}
- In the response to POST /api/v2/jobs/users-exports, a job_id is obtained:
- Once the job to export the users has been created, check on its status using the Management API V2 Get Job by ID endpoint. Provide the ID of the job (received in the response when creating the job).
- After the job is complete, access the export files using the URL provided as the location parameter value. Download the csv.gz or json.gz file and uncompress it. The user list should be visible along with the specified attributes.
- Another alternative is to use the Bulk User Import/Export functionality via the dashboard, with which similar results can be obtained. This is available via "User Management" > Users
Related References