Systems
Update a system
PATCH
/
v1
/
systems
/
{systemId}
Copy
curl --request PATCH \
--url https://api.ctrlplane.dev/api/v1/systems/{systemId} \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"workspaceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
Copy
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workspaceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"slug": "<string>",
"description": "<string>"
}
Path Parameters
UUID of the system
Body
application/json
Response
200
application/json
System updated successfully
The response is of type object
.
Copy
curl --request PATCH \
--url https://api.ctrlplane.dev/api/v1/systems/{systemId} \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"workspaceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
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.