Pipeline files
Pipeline file
File by ID.
GEThttps://cloud-api.calyptia.com/v1/pipeline_files/{fileID}
Authorization
Path parameters
fileID*string (uuid)
Response
OK
Body
id*string (uuid)
processingRuleID*nullable string (uuid)
name*string
Example: "myfile"
contents*string (byte)
encrypted*boolean
createdAt*string (date-time)
updatedAt*string (date-time)
Request
Response
Delete pipeline file
Delete pipeline file by its ID. The file cannot be deleted if some pipeline config is still referencing it; you must delete the pipeline first if you want to delete the file.
DELETEhttps://cloud-api.calyptia.com/v1/pipeline_files/{fileID}
Authorization
Path parameters
fileID*string (uuid)
Response
No Content
Request
Update pipeline file
Update file by its ID.
PATCHhttps://cloud-api.calyptia.com/v1/pipeline_files/{fileID}
Authorization
Path parameters
fileID*string (uuid)
Body
namenullable string
Example: "newfile"
contentsnullable string (byte)
encryptednullable boolean
Response
No Content
Request