Skip to main content
POST
/
fleet
Create workspace
curl --request POST \
  --url https://api.example.com/fleet \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'

Request

{
  "action": "create",
  "name": "Production"
}
name
string
required
Workspace name. Must be unique within your account (max 50 chars).

Response

{
  "id": "uuid",
  "name": "Production",
  "is_default": false,
  "created_at": "2026-01-15T10:30:00Z"
}