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

    Interface ListOrganizationClientGrantsRequestParameters

    {
    * audience: "audience",
    * client_id: "client_id",
    * page: 1,
    * per_page: 1,
    * include_totals: true
    * }
    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?: string | null

    Optional filter on audience of the client grant.

    client_id?: string | null

    Optional filter on client_id of the client grant.

    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

    page?: number | null

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

    per_page?: number | null

    Number of results per page. Defaults to 50.

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