---
title: "CreateWorkspaceBody"
description: "Request body for creating a Workspace."
section: "Reference"
group: "Types"
order: 278
---

## Definition

```ts
interface CreateWorkspaceBody {
  organizationId: string;
  name: string;
  handle: string;
}
```

## Fields

| Field            | Type     | Notes                                                                             |
| ---------------- | -------- | --------------------------------------------------------------------------------- |
| `organizationId` | `string` | `required` — Organization the workspace will belong to. Immutable after creation. |
| `name`           | `string` | `required` — Workspace name                                                       |
| `handle`         | `string` | `required` — Unique workspace handle                                              |
