Auth0 Node.js SDK - v5.1.0
    Preparing search index...

    Interface ListRulesRequestParameters

    {
    * page: 1,
    * per_page: 1,
    * include_totals: true,
    * enabled: true,
    * fields: "fields",
    * include_fields: true
    * }
    interface ListRulesRequestParameters {
        page?: number | null;
        per_page?: number | null;
        include_totals?: boolean | null;
        enabled?: boolean | null;
        fields?: string | null;
        include_fields?: boolean | null;
    }
    Index

    Properties

    page?: number | null

    Page index of the results to return. First page is 0.

    per_page?: number | null

    Number of results per page.

    include_totals?: boolean | null

    Return results inside an object that contains the total result count (true) or as a direct array of results (false, default).

    enabled?: boolean | null

    Optional filter on whether a rule is enabled (true) or disabled (false).

    fields?: string | null

    Comma-separated list of fields to include or exclude (based on value provided for include_fields) in the result. Leave empty to retrieve all fields.

    include_fields?: boolean | null

    Whether specified fields are to be included (true) or excluded (false).