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

# Manage members

export const GroupManagerBadge = ({size = "md"}) => {
  return <Tooltip tip="Members who are managers of a group that contains this resource can execute this action." cta="Workspace roles" href="/admin/users/access-control">
            <Badge icon="group" color="blue" size={size}>group manager</Badge>
        </Tooltip>;
};

export const AdminBadge = ({size = "md"}) => {
  return <Tooltip tip="Workspace owners and administrators can execute this action." cta="Workspace roles" href="/admin/users/access-control">
            <Badge icon="shield-check" color="blue" size={size}>admin</Badge>
        </Tooltip>;
};

export const PlatformUnsupportedBadge = () => {
  return <Tooltip tip="Platform API does not support this operation">
      <span className="inline-flex items-center gap-1.5 rounded-lg px-2 py-0.5 text-sm text-[rgb(var(--gray-500))] dark:text-[rgb(var(--gray-400))]" style={{
    marginLeft: '-0.5rem',
    cursor: 'default'
  }}>
        <Icon icon="ban" size={13} color="currentColor" /> Platform API
      </span>
    </Tooltip>;
};

## Add a member  <AdminBadge />  <GroupManagerBadge />

<PlatformUnsupportedBadge />

To add a member to a group, navigate to the [Groups page](https://app.mirurobotics.com/groups), click the ellipses (...) on the group you want to add a member to, and select **Members** from the dropdown.

<Frame>
  ![Group Members Dropdown](https://assets.mirurobotics.com/docs/v04/images/groups/ellipses-dropdown.png)
</Frame>

A dialog will appear with a list of the members who can currently access the group.

<Frame>
  ![Group Members Dialog](https://assets.mirurobotics.com/docs/v04/images/groups/member-dialog.png)
</Frame>

To add a member, input the name of the member you want to add in the search bar at the top, and select the member.

<Frame>
  ![Group Members Search](https://assets.mirurobotics.com/docs/v04/images/groups/member-dialog-search.png)
</Frame>

## Edit a member's access  <AdminBadge />  <GroupManagerBadge />

<PlatformUnsupportedBadge />

To edit a member's access to a group, navigate to the [Groups page](https://app.mirurobotics.com/groups), click the ellipses (...) on the group you want to edit, and select **Members** from the dropdown.

<Frame>
  ![Group Members Dropdown](https://assets.mirurobotics.com/docs/v04/images/groups/ellipses-dropdown.png)
</Frame>

A dialog will appear with a list of the members who can currently access the group. Find the member you want to edit, click their role, and select the desired roles from the dropdown.

<Frame>
  ![Group Members Dialog](https://assets.mirurobotics.com/docs/v04/images/groups/member-dialog.png)
</Frame>

If the roles are not editable, that member's access is set in some ancestor group or at the workspace level. To edit the member's access at a higher level, click the **Manage access** button.

<Frame>
  ![Group Members Manage Access](https://assets.mirurobotics.com/docs/v04/images/groups/edit-member-dropdown.png)
</Frame>

A panel will appear with the member's workspace roles and all of their group roles. Use the dropdowns to edit the member's access as needed.

<Frame>
  ![Group Members Access Panel](https://assets.mirurobotics.com/docs/v04/images/groups/member-access-panel.png)
</Frame>

## Remove a member  <AdminBadge />  <GroupManagerBadge />

<PlatformUnsupportedBadge />

To remove a member from a group, navigate to the [Groups page](https://app.mirurobotics.com/groups), click the ellipses (...) on the group you want to remove a member from, and select **Members** from the dropdown.

<Frame>
  ![Group Members Dropdown](https://assets.mirurobotics.com/docs/v04/images/groups/ellipses-dropdown.png)
</Frame>

A dialog will appear with a list of the members who can currently access the group. Find the member you want to remove, click the ellipses (...) next to their name, and select **Remove access**.

<Frame>
  ![Group Members Remove Dialog](https://assets.mirurobotics.com/docs/v04/images/groups/edit-member-dropdown.png)
</Frame>
