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

# ORGANIZATIONS

> List organizations and set the active one

| Command         | Description                                          |
| --------------- | ---------------------------------------------------- |
| [`list`](#list) | List all organizations your account has access to.   |
| [`set`](#set)   | Set the active organization for the current profile. |

***

## LIST

List all organizations your account has access to.

```bash theme={null}
oumi-cli organizations list [OPTIONS]
```

**Options**

| Option        | Type      | Required | Description                                                                                                                   |
| ------------- | --------- | -------- | ----------------------------------------------------------------------------------------------------------------------------- |
| `--limit`     | int range |          | Return at most N organizations (default 100). The server returns the full list in one response, so this is a client-side cap. |
| `--all`       | flag      |          | Return every organization (bounded by `--max-items`). Mutually exclusive with `--limit`.                                      |
| `--max-items` | int range |          | Hard safety cap on rows fetched, in any mode (default 10000).                                                                 |

***

## SET

Set the active organization for the current profile.

```bash theme={null}
oumi-cli organizations set [OPTIONS] {org_id}
```

**Arguments**

| Argument | Type | Required | Description                                         |
| -------- | ---- | -------- | --------------------------------------------------- |
| `ORG_ID` | str  | ✓        | Organization ID to activate in the current profile. |

***
