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
NEW
DONE
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-05-14T22:32:55.188Z", "updatedAt": "2025-05-14T22:32:55.188Z" } ], "endCursor": "text", "count": 1 }
Create a new log within a pipeline. The log will be created with the given logs blob of text.
logs
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-05-14T22:32:55.188Z" }