Check by ID.
GET /v1/core_instance_checks/{checkID} HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
OK
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"protocol": "tcp",
"status": "new",
"retries": 0,
"host": "localhost",
"port": 1,
"createdAt": "2025-06-20T17:20:31.048Z",
"updatedAt": "2025-06-20T17:20:31.048Z"
}
Delete core instance check by its ID.
DELETE /v1/core_instance_checks/{checkID} HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No Content
No content
Update check by its ID.
Update a core instance check request body.
Valid protocol types defined for a pipelines.
null
Possible values: The status of a check.
null
Possible values: DNS label format as of defined on RFC1123 or an IPv4 address.
null
Example: localhost
valid 0-65535 port number
null
number of retries for the check before marking it as unreachable.
null
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
}
No Content
No content