Appearance
Auth0
Manage users, roles, connections, and applications via the Auth0 Management API.
| Detail | Value |
|---|---|
| Category | Security |
| Base URL | https://{tenant}.auth0.com/api/v2 |
| Authentication | Bearer Token |
| Endpoints | 6 |
| Connector key | auth0 |
Using Auth0 in a workflow
- Go to Connections and click New Connection.
- Pick Auth0 from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET /users | List or search users |
POST /users | Create a user |
GET /users/{userId} | Get a user |
GET /roles | List roles |
GET /connections | List connections |
GET /logs | Search log events |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET /users
List or search users
| Detail | Value |
|---|---|
| Operation ID | security.listUsers |
| Method | GET |
| Path | /users |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
q | query | string | No |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Auth0 connection from the Connection dropdown.
- In the Operation dropdown, select
security.listUsers. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Auth0 API reference.
POST /users
Create a user
| Detail | Value |
|---|---|
| Operation ID | security.createUser |
| Method | POST |
| Path | /users |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Auth0 connection from the Connection dropdown.
- In the Operation dropdown, select
security.createUser. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Auth0 API reference.
GET /users/{userId}
Get a user
| Detail | Value |
|---|---|
| Operation ID | security.getUser |
| Method | GET |
| Path | /users/{userId} |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
userId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Auth0 connection from the Connection dropdown.
- In the Operation dropdown, select
security.getUser. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Auth0 API reference.
GET /roles
List roles
| Detail | Value |
|---|---|
| Operation ID | security.listRoles |
| Method | GET |
| Path | /roles |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Auth0 connection from the Connection dropdown.
- In the Operation dropdown, select
security.listRoles. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Auth0 API reference.
GET /connections
List connections
| Detail | Value |
|---|---|
| Operation ID | security.listConnections |
| Method | GET |
| Path | /connections |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Auth0 connection from the Connection dropdown.
- In the Operation dropdown, select
security.listConnections. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Auth0 API reference.
GET /logs
Search log events
| Detail | Value |
|---|---|
| Operation ID | security.listLogs |
| Method | GET |
| Path | /logs |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Auth0 connection from the Connection dropdown.
- In the Operation dropdown, select
security.listLogs. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Auth0 API reference.