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

    Interface ListGroupsRequestParameters

    {
    * connection_id: "connection_id",
    * name: "name",
    * external_id: "external_id",
    * fields: "fields",
    * include_fields: true,
    * from: "from",
    * take: 1
    * }
    interface ListGroupsRequestParameters {
        connection_id?: string | null;
        name?: string | null;
        external_id?: string | null;
        fields?: string | null;
        include_fields?: boolean | null;
        from?: string | null;
        take?: number | null;
    }
    Index

    Properties

    connection_id?: string | null

    Filter groups by connection ID.

    name?: string | null

    Filter groups by name.

    external_id?: string | null

    Filter groups by external ID.

    fields?: string | null

    A comma separated list of fields to include or exclude (depending on include_fields) from the result, empty to retrieve all fields

    include_fields?: boolean | null

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

    from?: string | null

    Optional Id from which to start selection.

    take?: number | null

    Number of results per page. Defaults to 50.