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

# Create a workspace

> Create a workspace managed by and billed to your partner account.

Requires an API key of a partner workspace. The created workspace bills to your
partner customer, and your keys can act inside it by passing its ID in the
`Plane-Workspace` header on other endpoints.

### Parameters

<ParamField body="name" type="string" required>
  The name of the workspace, usually the client company's name.
</ParamField>

### Returns

Returns the created [Workspace object](/reference/workspaces/object).

<RequestExample>
  ```bash Request theme={null}
  curl https://api.plane.com/v1/workspaces \
    -u YOUR_PARTNER_API_KEY: \
    -d name="Acme Inc"
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "wsp_8rT2mVq5xNp3Kd",
    "name": "Acme Inc",
    "status": "active",
    "customer": "cus_6wJm3RkQp9xT2v",
    "created": "2026-08-04T16:20:00Z",
    "updated": "2026-08-04T16:20:00Z"
  }
  ```
</ResponseExample>
