Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { ReleaseStageNotice } from "/snippets/ReleaseStageNotice.jsx"
terms="true"
/>

Auth0 provides tenant users a more intuitive search capability for registered Applications and APIs with the ability to build filter expressions for searchable fields in Auth0 Dashboard. Rather than scroll through paginated lists with hundreds of resources, your tenant user queries for fields such as:
Auth0 provides tenant users a more intuitive search capability for registered Applications, APIs, and Roles with the ability to build filter expressions for searchable fields in Auth0 Dashboard. Rather than scroll through paginated lists with hundreds of resources, your tenant user queries for fields such as:
* The name of your application (Travel0-native)
* Application or user metadata (permissions)
* Application type (SPA)
Expand All @@ -23,7 +23,7 @@ Auth0 Dashboard returns matching results in real time from all your registered r

## How it works

The search bar on the [Applications](https://manage.auth0.com/#/applications) and the [APIs](https://manage.auth0.com/#/apis) section of Auth0 Dashboard uses a guided filter interface and Boolean search. The search bar functions as a dropdown menu that lists the filterable fields. When you select a field and enter a value, the filter applies the value as a removable tag above the results. You can combine up to five filters at a time.
The search bar on the [Applications](https://manage.auth0.com/#/applications), the [APIs](https://manage.auth0.com/#/apis), and the [Roles](https://manage.auth0.com/#/roles) section of Auth0 Dashboard uses a guided filter interface and Boolean search. The search bar functions as a dropdown menu that lists the filterable fields. When you select a field and enter a value, the filter applies the value as a removable tag above the results. You can combine up to five filters at a time.

Each filter you add narrows results further. To specify results, apply `AND/OR` logic between different fields. Filters reflect in the URL as query parameters. Copy the URL at any point to share with a teammate or bookmark it to return to the same filtered view later.

Expand Down Expand Up @@ -83,6 +83,12 @@ Search for first-party clients by selecting `true` or `false`. Use this to disti
| **Identifier** | The unique audience identifier (for example, `https://api.example.com`) | Partial match |
| **Id** | The internal system ID | Exact match |

#### Roles

| **Field** | **Description** | **Match type** |
|---|---|---|
| **Name** | The name of the role | Partial match |
| **Id** | The unique role ID | Exact match |

### Limitations

Expand Down
Loading