# `bird organization workspaces create`

## Usage

```bash
bird organization workspaces create <name> [flags]
```

## Description

Create a workspace

Creates a new workspace under the authenticated user's organization. The caller must hold org-level write access.

Build the request from the &lt;name> argument, a JSON WorkspaceCreate body via
--body-file ("-" reads stdin), or both — an inline value overrides the matching
body field. Run --example to print a ready-to-edit body, or --dry-run to print
the resolved request without sending it.

## Examples

```bash
# print the body shape (no credentials needed)
bird organization workspaces create --example
```

## Options

#### Request

| Name                | Description                                                  |
| ------------------- | ------------------------------------------------------------ |
| `--body-file`       | Read the JSON request body from this file; "-" reads stdin   |
| `--example`         | Print a complete example request body, then exit             |
| `--dry-run`         | Print the resolved request without sending it, then exit     |
| `--idempotency-key` | Deduplication key; a retry with the same key won't act twice |

#### Options

| Name                | Description                                      |
| ------------------- | ------------------------------------------------ |
| `--response-schema` | Print the fields this command returns, then exit |

## Related

| Name                                                                                        | Description                            |
| ------------------------------------------------------------------------------------------- | -------------------------------------- |
| [`bird organization workspaces delete`](/docs/cli/reference/organization-workspaces-delete) | Delete a workspace in the organization |
| [`bird organization workspaces get`](/docs/cli/reference/organization-workspaces-get)       | Get a workspace in the organization    |
| [`bird organization workspaces list`](/docs/cli/reference/organization-workspaces-list)     | List workspaces                        |
| [`bird organization workspaces update`](/docs/cli/reference/organization-workspaces-update) | Update a workspace in the organization |