docs/interfaces/management.Management.ListOrganizationClientGrantsRequestParameters.html
{ * 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;
}
audience?client_id?grant_ids?page?per_page?include_totals?
Optionalaudienceaudience?: string | null
Optional filter on audience of the client grant.
Optionalclient_idclient_id?: string | null
Optional filter on client_id of the client grant.
Optionalgrant_idsgrant_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
Optionalpagepage?: number | null
Page index of the results to return. First page is 0.
Optionalper_pageper_page?: number | null
Number of results per page. Defaults to 50.
Optionalinclude_totalsinclude_totals?: boolean | null
Return results inside an object that contains the total result count (true) or as a direct array of results (false, default).
Member Visibility
ThemeOSLightDark
Properties audienceclient_idgrant_idspageper_pageinclude_totals