Fleet files
Retrieve a single fleet file with its metadata.
Authorizations
Path parameters
fleetFileIDstring · uuidRequired
UUID of the fleet file.
Responses
200
Fleet File.
application/json
get
GET /v1/fleet_files/{fleetFileID} HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
Fleet File.
{
"contents": "Ynl0ZXM=",
"createdAt": "2025-06-27T23:04:12.298Z",
"updatedAt": "2025-06-27T23:04:12.298Z",
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text"
}
Delete a single fleet file by its ID.
Authorizations
Path parameters
fleetFileIDstring · uuidRequired
UUID of the fleet file.
Responses
204
Deleted.
delete
DELETE /v1/fleet_files/{fleetFileID} HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
204
Deleted.
No content
Update a fleet file.
Authorizations
Path parameters
fleetFileIDstring · uuidRequired
UUID of the fleet file.
Body
namestringOptional
contentsstring · byteOptional
Responses
204
Updated.
patch
PATCH /v1/fleet_files/{fleetFileID} HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 37
{
"name": "text",
"contents": "Ynl0ZXM="
}
204
Updated.
No content