POST
/
v1
/
systems
Create a system
curl --request POST \
  --url https://api.ctrlplane.dev/api/v1/systems \
  --header 'Content-Type: application/json' \
  --data '{
  "workspaceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "slug": "<string>",
  "description": "<string>"
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "workspaceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "slug": "<string>",
  "description": "<string>"
}

Body

application/json
workspaceId
string<uuid>
required

The workspace ID of the system

name
string
required

The name of the system

slug
string
required

The slug of the system

description
string

The description of the system

Response

System created successfully

id
string<uuid>
required

The system ID

workspaceId
string<uuid>
required

The workspace ID of the system

name
string
required

The name of the system

slug
string
required

The slug of the system

description
string

The description of the system