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

    Interface ListOrganizationClientGrantsRequestParameters

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

    Properties

    audience?: string

    Optional filter on audience of the client grant.

    client_id?: string

    Optional filter on client_id of the client grant.

    grant_ids?: string | string[]

    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

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

    per_page?: number

    Number of results per page. Defaults to 50.

    include_totals?: boolean

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