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

# Team Management

> Add team members to your Nuon Org

You can add users to your Nuon Org using our CLI.

## Invite a user to your Org

You can invite a user by email to your Nuon Org using our cli:

```sh theme={null}
nuon orgs invite --email=user@yourdomain.com --role=org_read_only
```

Pass `--role` to set what the new member can do. See [Access control](/concepts/access-control) for the available
roles and what each grants; run `nuon roles list` to see the current set. If you omit `--role`, the member is
invited as an admin.

The invited user will get a welcome email, and when they sign into the dashboard next will automatically be added to
your Org.

## Change a member's role

To change the role of an existing member, use their user ID. This requires org admin access.

```sh theme={null}
nuon orgs update-user-role --user-id=<user-id> --role=org_read_only
```

A member holds one role at a time, so this replaces their current role.

## View invites

You can view invites for your Org using our cli:

```sh theme={null}
nuon orgs list-invites
```

## Delete an invite / remove users

If you need to delete an invite, or remove a user from your Org, [please contact us](https://nuon.co/contact-us).
