Skip to main content
POST
/
api
/
v1
/
workspaces
Create a new workspace
curl --request POST \
  --url https://api.example.com/api/v1/workspaces/ \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "slug": "<string>",
  "icon": "",
  "description": ""
}

Body

application/json
name
string
required
Required string length: 1 - 255

Response

Successful Response

id
string
required
name
string
required
slug
string
required
icon
string
default:""
description
string
default:""
Last modified on March 22, 2026