Core instance checks
Check by ID.
Authorizations
Path parameters
checkIDstring · uuidRequired
Responses
200
OK
application/json
get
GET /v1/core_instance_checks/{checkID} HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
OK
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"protocol": "tcp",
"status": "new",
"retries": 0,
"host": "localhost",
"port": 1,
"createdAt": "2025-06-23T12:38:54.696Z",
"updatedAt": "2025-06-23T12:38:54.696Z"
}
Delete core instance check by its ID.
Authorizations
Path parameters
checkIDstring · uuidRequired
Responses
204
No Content
delete
DELETE /v1/core_instance_checks/{checkID} HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
204
No Content
No content
Update check by its ID.
Authorizations
Path parameters
checkIDstring · uuidRequired
Body
Update a core instance check request body.
protocolstring · enum | nullableOptionalDefault:
Valid protocol types defined for a pipelines.
null
Possible values: statusstring · enum | nullableOptionalDefault:
The status of a check.
null
Possible values: hoststring | nullableOptionalDefault:
DNS label format as of defined on RFC1123 or an IPv4 address.
null
Example: localhost
portnumber | nullableOptionalDefault:
valid 0-65535 port number
null
retriesnumber | nullableOptionalDefault:
number of retries for the check before marking it as unreachable.
null
Responses
204
No Content
patch
PATCH /v1/core_instance_checks/{checkID} HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 73
{
"protocol": "tcp",
"status": "new",
"host": "localhost",
"port": 1,
"retries": 1
}
204
No Content
No content