Systems
Create a system
POST
/
v1
/
systems
Copy
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>"
}'
Copy
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workspaceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"slug": "<string>",
"description": "<string>"
}
Body
application/json
Response
201
application/json
System created successfully
The response is of type object
.
Copy
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>"
}'
Copy
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workspaceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"slug": "<string>",
"description": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.