Back to Node Auth0

Interface ListOrganizationClientGrantsRequestParameters

docs/interfaces/management.Management.ListOrganizationClientGrantsRequestParameters.html

5.9.11.9 KB
Original Source

Interface ListOrganizationClientGrantsRequestParameters

Example

{ * audience: "audience", * client_id: "client_id", * grant_ids: ["grant_ids"], * page: 1, * per_page: 1, * include_totals: true * }Copy

interface ListOrganizationClientGrantsRequestParameters {
audience?: string | null;
client_id?: string | null;
grant_ids?: string | (string | null)[] | null;
page?: number | null;
per_page?: number | null;
include_totals?: boolean | null;
}

Index

Properties

audience?client_id?grant_ids?page?per_page?include_totals?

Properties

Optionalaudience

audience?: string | null

Optional filter on audience of the client grant.

Optionalclient_id

client_id?: string | null

Optional filter on client_id of the client grant.

Optionalgrant_ids

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

Optional filter on the ID of the client grant. Must be URL encoded and may be specified multiple times (max 10).
e.g. ../client-grants?grant_ids=id1&grant_ids=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. Defaults to 50.

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

Settings

Member Visibility

  • Protected
  • Inherited

ThemeOSLightDark

On This Page

Properties audienceclient_idgrant_idspageper_pageinclude_totals