Pipeline log by ID.
/v1/pipeline_logs/{pipelineLogID}
curl -L \ --url 'https://cloud-api.calyptia.com/v1/pipeline_logs/{pipelineLogID}' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{ "id": "123e4567-e89b-12d3-a456-426614174000", "pipelineID": "123e4567-e89b-12d3-a456-426614174000", "logs": "text", "lines": 100, "status": "NEW", "createdAt": "2025-03-12T03:44:01.586Z", "updatedAt": "2025-03-12T03:44:01.586Z" }
Delete a log given its ID.
curl -L \ --request DELETE \ --url 'https://cloud-api.calyptia.com/v1/pipeline_logs/{pipelineLogID}' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{ "deleted": true, "deletedAt": null }
Update a log given its ID. The log will be updated with the given logs blob of text.
logs
NEW
DONE
curl -L \ --request PATCH \ --url 'https://cloud-api.calyptia.com/v1/pipeline_logs/{pipelineLogID}' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \ --header 'Content-Type: application/json' \ --data '{ "logs": null, "lines": null, "status": null }'
{ "updatedAt": "2025-03-12T03:44:01.586Z" }