Delete user groups

To delete a user group, follow these steps:

  1. On the toolbar, click on your username and select Configuration from the menu.

  2. On the Users tab, in the Users and groups section, select the desired user group from the list.

  3. In the Remove group tab, click the Remove group button.

    delete user groups light
    delete user groups dark
  4. In the confirmation window, confirm the action.

The selected user group will be deleted.

Deleting a user group does not delete the user accounts that belong to that group.

REST API

You can delete a user group using the Delete User Group request. This request deletes the user group with the specified ID.

The 'manage-users' permission is required to delete a user group.

login=<...>
password=<...>
saymon_hostname=<...>
group_id=<...>
url=https://$saymon_hostname/node/api/user-groups/$group_id

curl -X DELETE $url -u $login:$password
Deleting a user group does not delete the user accounts within it.