---
title: "Create workspace"
method: POST
path: "/v1/workspaces"
tags: ["Workspaces"]
---

# Create workspace

`POST /v1/workspaces`

Create a new workspace within the account. Requires account-scoped API key (workspace-scoped keys cannot create workspaces).

## Request body

- CreateWorkspace
  - `name` string, required — Workspace name (required)
  - `description` string — Optional workspace description
  - `timezone` string — Workspace timezone (IANA format). Defaults to UTC.
  - `contactEmail` string, email — Contact email for workspace
  - `contactPhone` string — Contact phone for workspace

## Response `201`

Workspace created successfully

- Workspace
  - `id` string, uuid, required — Unique workspace identifier
  - `accountId` string, uuid, required — Account ID that owns this workspace
  - `name` string, required — Workspace name
  - `description` string, nullable, required — Optional workspace description
  - `timezone` string, required — Workspace timezone (IANA format)
  - `contactEmail` string, email, nullable, required — Contact email for workspace
  - `contactPhone` string, nullable, required — Contact phone for workspace
  - `createdAt` string, date-time, required — Workspace creation timestamp
  - `updatedAt` string, date-time, required — Workspace last update timestamp

## Other responses

- `400` — Validation error - invalid request body
- `401` — Missing or invalid API key
- `403` — Forbidden - workspace-scoped keys cannot create workspaces

---

[API](https://skmtc.net/nedzo/apis/nedzo-api.md) · [All operations](https://skmtc.net/nedzo/apis/nedzo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/nedzo/nedzo-api/revisions/f2607cdb56fa/schema)
