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

    Interface ListOrganizationInvitationsRequestParameters

    {}
    
    interface ListOrganizationInvitationsRequestParameters {
        page?: number;
        per_page?: number;
        include_totals?: boolean;
        fields?: string;
        include_fields?: boolean;
        sort?: string;
    }
    Index

    Properties

    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

    When true, return results inside an object that also contains the start and limit. When false (default), a direct array of results is returned. We do not yet support returning the total invitations count.

    fields?: string

    Comma-separated list of fields to include or exclude (based on value provided for include_fields) in the result. Leave empty to retrieve all fields.

    include_fields?: boolean

    Whether specified fields are to be included (true) or excluded (false). Defaults to true.

    sort?: string

    Field to sort by. Use field:order where order is 1 for ascending and -1 for descending Defaults to created_at:-1.