Auth0 Node.js SDK - v7.2.0
    Preparing search index...

    Interface SearchResourceServersRequestParameters

    {
    * q: "q",
    * parser: "scim",
    * fields: "fields",
    * include_fields: true,
    * take: 1,
    * from: "from",
    * sort: "identifier"
    * }
    interface SearchResourceServersRequestParameters {
        q?: string | null;
        parser?: Management.SearchParserEnum | null;
        fields?: string | null;
        include_fields?: boolean | null;
        take?: number | null;
        from?: string | null;
        sort?: Management.ResourceServerSortFieldEnum | null;
    }
    Index
    q?: string | null

    Filter expression in SCIM or Lucene syntax (depending on parser parameter). SCIM examples: name eq "My API", identifier sw "https://". SCIM operators: eq, ne, sw, ew, co, pr, gt, ge, lt, le, and, or.

    Supported Fields:

    • id - Filter by resource server ID
    • identifier - Filter by resource server identifier
    • name - Filter by resource server name
    • updated_at - Filter by last update date
    Maximum 5 filter operations per query. Results are eventually consistent and may not reflect recent updates.

    Query parser to use for the filter expression. Use "scim" for SCIM filter syntax or "lucene" for Lucene query syntax (default).

    fields?: string | null

    Comma-separated list of fields to include or exclude in the response. Works with the include_fields parameter to control projection mode.

    include_fields?: boolean | null

    Controls field projection mode. Set to true to include only fields specified in the fields parameter. Set to false to exclude fields specified in the fields parameter. Defaults to true if not specified.

    take?: number | null

    Maximum number of results to return per page (1-100). Defaults to 50.

    from?: string | null

    Cursor for the next page of results. Use the value from the next field in the previous response.

    Field name to sort results by in ascending order only. Defaults to insertion order (oldest first) if not provided.