Pipeline log by ID.
GET /v1/pipeline_logs/{pipelineLogID} HTTP/1.1 Host: cloud-api.calyptia.com Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
OK
{ "id": "123e4567-e89b-12d3-a456-426614174000", "pipelineID": "123e4567-e89b-12d3-a456-426614174000", "logs": "text", "lines": 1, "status": "NEW", "createdAt": "2025-04-24T07:52:01.169Z", "updatedAt": "2025-04-24T07:52:01.169Z" }
Delete a log given its ID.
DELETE /v1/pipeline_logs/{pipelineLogID} HTTP/1.1 Host: cloud-api.calyptia.com Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
{ "deleted": true, "deletedAt": "2025-04-24T07:52:01.169Z" }
Update a log given its ID. The log will be updated with the given logs blob of text.
logs
null
NEW
DONE
PATCH /v1/pipeline_logs/{pipelineLogID} HTTP/1.1 Host: cloud-api.calyptia.com Authorization: Bearer YOUR_SECRET_TOKEN Content-Type: application/json Accept: */* Content-Length: 40 { "logs": "text", "lines": 1, "status": "NEW" }
{ "updatedAt": "2025-04-24T07:52:01.169Z" }