Cluster objects

Delete cluster object

delete

Delete a given cluster_object

Authorizations
Path parameters
clusterObjectIDstring · uuidRequired
Responses
200
OK
delete
DELETE /v1/cluster_objects/{clusterObjectID} HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

OK

No content

Update cluster object

patch

Updates a given cluster_object

Authorizations
Path parameters
clusterObjectIDstring · uuidRequired
Body

Request body to update a cluster object.

namestring · kubernetes valid hostname or namespace name. https://kubernetes.io/docs/reference/labels-annotations-taints/ Optional
kindstring · enumOptional

Kind of the kubernetes object

Default: namespacePossible values:
Responses
200
OK
application/json
patch
PATCH /v1/cluster_objects/{clusterObjectID} HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 34

{
  "name": "text",
  "kind": "namespace"
}
200

OK

{
  "updatedAt": "2025-06-27T23:51:29.116Z"
}