> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nebius.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How to delete groups

You can delete any group, whether default or custom. After you delete a group, its users and service accounts will lose their access rights assigned within this group. Deleting a group is permanent and irreversible.

If you are part of the `admins` group and you delete it, you lose access rights of the `admin` role in the tenant. To recover access, [contact support](https://console.nebius.com/support/create-ticket).

To delete a group, do the following:

<Tabs>
  <Tab title="Web console">
    1. In the [web console](https://console.nebius.com), go to <Icon icon="https://mintcdn.com/nebius-ai-cloud/1Ha0sWR6e1mnIaHS/_assets/sidebar/administration.svg?fit=max&auto=format&n=1Ha0sWR6e1mnIaHS&q=85&s=e6411dc023fd6972922c0a12a59ccf21" width="16" height="16" data-path="_assets/sidebar/administration.svg" /> **Administration** → **IAM**.
    2. In the **Groups** tab, in the line of the required group, click <Icon icon="https://mintcdn.com/nebius-ai-cloud/1Ha0sWR6e1mnIaHS/_assets/button-vellipsis.svg?fit=max&auto=format&n=1Ha0sWR6e1mnIaHS&q=85&s=e80b8e57c43bfd117679262e6a1334ad" width="12" height="24" data-path="_assets/button-vellipsis.svg" /> → **Delete**.
    3. In the window that opens, confirm the deletion.
  </Tab>

  <Tab title="CLI">
    1. Get the group ID:

       ```bash theme={null}
       nebius iam group list --parent-id <tenant_ID>
       ```

    2. Delete the group:

       ```bash theme={null}
       nebius iam group delete --id <group_ID>
       ```
  </Tab>
</Tabs>
