Core instance checks

Core Instance check

get

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-05-31T05:48:58.948Z",
  "updatedAt": "2025-05-31T05:48:58.948Z"
}

Delete core instance check

delete

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 core instance check

patch

Update check by its ID.

Authorizations
Path parameters
checkIDstring · uuidRequired
Body

Update a core instance check request body.

protocolstring · enum | nullableOptional

Valid protocol types defined for a pipelines.

Default: nullPossible values:
statusstring · enum | nullableOptional

The status of a check.

Default: nullPossible values:
hoststring | nullableOptional

DNS label format as of defined on RFC1123 or an IPv4 address.

Default: nullExample: localhost
portnumber | nullableOptional

valid 0-65535 port number

Default: null
retriesnumber | nullableOptional

number of retries for the check before marking it as unreachable.

Default: 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