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

# jstm org

> List organizations, view members, and invite or remove people.

## `org list`

List the organizations you belong to.

```bash theme={null}
jstm org list
jstm org list --json
```

## `org members`

List members of an organization. Accepts an organization handle, UUID, or FQN.

```bash theme={null}
jstm org members acme-corp
jstm org members acme-corp --json
```

## `org invite`

Invite someone to an organization by username or email address.

```bash theme={null}
jstm org invite acme-corp dana@acme.com
jstm org invite acme-corp dana
```

An invited person receives an invitation they accept to join. This command has no `--json`.

<Info>
  Inviting adds someone to the organization. To give them access to a specific team workspace, add them there too with `jstm workspace member-add`.
</Info>

## `org remove`

Remove a member from an organization, by username.

```bash theme={null}
jstm org remove acme-corp dana
```

This command has no `--json`.

## See also

* [`jstm workspace`](/cli/workspace) — workspace-level membership and roles.
* [Invite and manage members](/guides/invite-and-manage-members) — walkthrough.
