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

    Interface ListResourceServerRequestParameters

    {}
    
    interface ListResourceServerRequestParameters {
        identifiers?: string | string[];
        page?: number;
        per_page?: number;
        include_totals?: boolean;
        include_fields?: boolean;
    }
    Index

    Properties

    identifiers?: string | string[]

    An optional filter on the resource server identifier. Must be URL encoded and may be specified multiple times (max 10).
    e.g. ../resource-servers?identifiers=id1&identifiers=id2

    page?: number

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

    per_page?: number

    Number of results per page.

    include_totals?: boolean

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

    include_fields?: boolean

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