Files
Files from a pipeline.
Authorizations
Path parameters
pipelineIDstring · uuidRequired
Query parameters
lastintegerOptional
Last files.
Responses
200
OK
application/json
get
GET /v1/aggregator_pipelines/{pipelineID}/files HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
OK
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"processingRuleID": "123e4567-e89b-12d3-a456-426614174000",
"name": "myfile",
"contents": "Ynl0ZXM=",
"encrypted": true,
"createdAt": "2025-06-27T22:04:32.983Z",
"updatedAt": "2025-06-27T22:04:32.983Z"
}
]
Create file within a pipeline.
The given name is unique within the pipeline.
These files can be referenced by their name within a fluentbit configuration file like so {{files.thename}}
.
Use them to share common stuff like parsers.
Authorizations
Path parameters
pipelineIDstring · uuidRequired
Body
Create pipeline file request body.
namestringRequiredExample:
newfile
contentsstring · byteRequired
encryptedbooleanRequired
Responses
201
Created
application/json
post
POST /v1/aggregator_pipelines/{pipelineID}/files HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 57
{
"name": "newfile",
"contents": "Ynl0ZXM=",
"encrypted": true
}
201
Created
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-06-27T22:04:32.983Z"
}