MonoCloud Management SDK
    Preparing search index...

    Hierarchy

    Index

    Constructors

    Properties

    fetcher: Fetcher

    Methods

    • Parameters

      • groupId: string

        The unique identifier of the group.

      Returns Promise<MonoCloudResponse<null>>

      The group was deleted successfully

      Permanently removes the specified group. Users who are members of this group will no longer be associated with it after deletion.

      This operation is irreversible.

      GroupsClient

    • Parameters

      • Optionalpage: number

        The page number to retrieve.

      • Optionalsize: number

        The number of groups to return per page.

      • Optionalfilter: string

        Optional Lucene-style filter expression used to search by attributes.

      • Optionalsort: string

        Sort expression in the format field:direction, where direction is 1 for ascending or -1 for descending. Supported fields include - name, type, clients_assigned, users_assigned, last_assigned, creation_time, last_updated.

      Returns Promise<MonoCloudPageResponse<Group[]>>

      Group[] - The groups were retrieved successfully

      Retrieves a paginated list of groups. Optional query parameters allow searching, filtering, and sorting the results.

      GroupsClient