Back to Node Auth0

Interface ListResourceServerRequestParameters

docs/interfaces/management.Management.ListResourceServerRequestParameters.html

5.9.11.8 KB
Original Source

Interface ListResourceServerRequestParameters

Example

{ * identifiers: ["identifiers"], * page: 1, * per_page: 1, * include_totals: true, * include_fields: true * }Copy

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

Index

Properties

identifiers?page?per_page?include_totals?include_fields?

Properties

Optionalidentifiers

identifiers?: string | (string | null)[] | null

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

Optionalpage

page?: number | null

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

Optionalper_page

per_page?: number | null

Number of results per page.

Optionalinclude_totals

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).

Optionalinclude_fields

include_fields?: boolean | null

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

Settings

Member Visibility

  • Protected
  • Inherited

ThemeOSLightDark

On This Page

Properties identifierspageper_pageinclude_totalsinclude_fields