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

# org

> Manage Entire organizations.

Manage Entire organizations.

```bash theme={null}
entire org COMMAND
```

An organization owns [projects](/cli-reference/project), which in turn own [repositories](/cli-reference/repo). To manage who belongs to an org, use [`entire grant org`](/cli-reference/grant#grant-org).

Use an organization's name or ULID with `get` and `delete`. Every subcommand accepts `--json` to print raw JSON instead of a table.

## `entire org create`

Create an organization.

```bash theme={null}
entire org create NAME [flags]
```

| Flag            | Description                                                    |
| --------------- | -------------------------------------------------------------- |
| `--region SLUG` | Jurisdiction slug. Defaults to the server's home jurisdiction. |

```bash theme={null}
entire org create acme
entire org create acme --region eu
```

## `entire org list`

List organizations you can see.

```bash theme={null}
entire org list [flags]
```

## `entire org get`

Show an organization by name or ULID.

```bash theme={null}
entire org get ORG [flags]
```

## `entire org delete`

Delete an organization by name or ULID.

```bash theme={null}
entire org delete ORG [flags]
```

| Flag          | Description                                        |
| ------------- | -------------------------------------------------- |
| `-f, --force` | Skip the confirmation prompt.                      |
| `-y, --yes`   | Skip the confirmation prompt. Alias for `--force`. |

## Continue With

<CardGroup cols={2}>
  <Card title="project" icon="folder" href="/cli-reference/project">
    Create and manage the projects an org owns.
  </Card>

  <Card title="grant" icon="key" href="/cli-reference/grant">
    Manage org membership and access.
  </Card>
</CardGroup>
