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

# Create Workspace

> Creates a new workspace

### Body Parameters

<ParamField body="name" type="string" required>
  Name for the workspace
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST "https://config.gms.ensync.cloud/v1/workspace" \
    -H "X-API-KEY: your-api-key" \
    -H "Content-Type: application/json" \
    -d '{
      "name": "production"
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "message": "Workspace created successfully"
  }
  ```
</ResponseExample>
