Fuzzball Documentation
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

Removing Users from Organizations

An organization owner can remove members and other owners of the organization using the web UI or the CLI.

Please select either the web UI or CLI tab to see the appropriate instructions for your environment.

Prerequisites

Before removing users via the web UI, ensure you have:

  • Organization owner permissions

Removing Existing Users from the Organization

  1. Log into your Fuzzball UI as an organization owner

  2. Click on the Gear icon in the top right of the dashboard header and select Manage organization

    Manage organization menu

  3. Navigate to the Users section in the left toolbar

    User added to members list

  4. Select “Delete user” from the kebob menu of the user you wish to remove from the organization members or owners tab. In our case, user2@ciq.com is a Member of the organization:

    Delete user

  5. After confirming, the user will be removed from the list of Members

    Users section

Prerequisites

  • Fuzzball CLI installed
  • Active CLI context for a Fuzzball user configured as an owner for the Fuzzball organization to be managed.

Removing Users from the Organization

Members and owners of an organization are removed with organization member remove. The user can be referenced by email or UUID. For example, to remove the user2@ciq.com member added in the user management section you can either remove them by email directly or look up their UUID first:

$ fuzzball organization member list
ID                                   | EMAIL
41a6f21f-19ec-471d-ae9e-edffc50c58f6   user2@ciq.com
eb9bf66e-5914-4e61-b5f9-ff1d1ca3bf05   user4@ciq.com

The user can then be removed. Successful removal is indicated by the return of an empty JSON object.

$ fuzzball organization member remove 41a6f21f-19ec-471d-ae9e-edffc50c58f6
{}

Rerunning fuzzball organization member list confirms user2@ciq.com has been removed as an organization member.

$ fuzzball organization member list
ID                                   | EMAIL
eb9bf66e-5914-4e61-b5f9-ff1d1ca3bf05   user4@ciq.com

The same organization member remove command also removes organization owners — the server clears both relationships in one call. To demote an owner to a regular member without removing them, use organization member update <user> --owner=false.