Skip to main content
POST
/
v2
/
workspaces
Create Workspace
curl --request POST \
  --url http://localhost:3000/api/v2/workspaces \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>"
}'
{
  "id": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required

Response

Workspace created successfully

id
string
required
I