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

    Interface ListUserGrantsRequestParameters

    {
    * per_page: 1,
    * page: 1,
    * include_totals: true,
    * user_id: "user_id",
    * client_id: "client_id",
    * audience: "audience"
    * }
    interface ListUserGrantsRequestParameters {
        per_page?: number | null;
        page?: number | null;
        include_totals?: boolean | null;
        user_id?: string | null;
        client_id?: string | null;
        audience?: string | null;
    }
    Index

    Properties

    per_page?: number | null

    Number of results per page.

    page?: number | null

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

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

    user_id?: string | null

    user_id of the grants to retrieve.

    client_id?: string | null

    client_id of the grants to retrieve.

    audience?: string | null

    audience of the grants to retrieve.