Secret by ID.
Pipeline secret model.
GET /v1/pipeline_secrets/{secretID} HTTP/1.1 Host: cloud-api.calyptia.com Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
OK
{ "id": "123e4567-e89b-12d3-a456-426614174000", "key": "mysecret", "value": "Ynl0ZXM=", "createdAt": "2025-04-24T07:42:48.221Z", "updatedAt": "2025-04-24T07:42:48.221Z" }
Delete pipeline secret by its ID. The secret cannot be deleted if some pipeline config is still referencing it; you must delete the pipeline first if you want to delete the secret.
DELETE /v1/pipeline_secrets/{secretID} HTTP/1.1 Host: cloud-api.calyptia.com Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
No Content
No content
Update secret by its ID.
Update pipeline secret request body.
null
newsecret
PATCH /v1/pipeline_secrets/{secretID} HTTP/1.1 Host: cloud-api.calyptia.com Authorization: Bearer YOUR_SECRET_TOKEN Content-Type: application/json Accept: */* Content-Length: 38 { "key": "newsecret", "value": "Ynl0ZXM=" }