Logs from a pipeline with backward pagination.
Parent pipeline ID.
Limit to the last logs.
Paginate logs before the given cursor.
Filter logs by status
GET /v1/pipelines/{pipelineID}/logs HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
OK
{
"items": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"pipelineID": "123e4567-e89b-12d3-a456-426614174000",
"logs": "text",
"lines": 100,
"status": "NEW",
"createdAt": "2025-06-20T17:20:31.048Z",
"updatedAt": "2025-06-20T17:20:31.048Z"
}
],
"endCursor": "text",
"count": 1
}
Create a new log within a pipeline.
The log will be created with the given logs
blob of text.
Parent pipeline ID.
100
POST /v1/pipelines/{pipelineID}/logs HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 27
{
"logs": "text",
"lines": 100
}
Created
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-06-20T17:20:31.048Z"
}