Checks associated to a pipeline.
Last files.
End cursor.
GET /v1/pipelines/{pipelineID}/checks 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": 3,
"port": 1,
"host": "localhost",
"createdAt": "2025-06-20T17:20:31.048Z",
"updatedAt": "2025-06-20T17:20:31.048Z"
}
]
Create check within a pipeline.
Create pipeline check request body.
Valid protocol types defined for a pipelines.
The status of a check.
new
Possible values: number of retries for the check before marking it as failed
3
DNS label format as of defined on RFC1123 or an IPv4 address.
localhost
valid 0-65535 port number
POST /v1/pipelines/{pipelineID}/checks 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",
"retries": 3,
"host": "localhost",
"port": 1
}
Created
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-06-20T17:20:31.048Z"
}