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

    Interface ListCustomDomainsRequestParameters

    {
    * q: "q",
    * fields: "fields",
    * include_fields: true,
    * sort: "sort"
    * }
    interface ListCustomDomainsRequestParameters {
        q?: string | null;
        fields?: string | null;
        include_fields?: boolean | null;
        sort?: string | null;
    }
    Index

    Properties

    q?: string | null
    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).

    sort?: string | null

    Field to sort by. Only domain:1 (ascending order by domain) is supported at this time.