Retrieve a single fleet file with its metadata.
UUID of the fleet file.
GET /v1/fleet_files/{fleetFileID} HTTP/1.1 Host: cloud-api.calyptia.com Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
Fleet File.
{ "contents": "Ynl0ZXM=", "createdAt": "2025-04-24T08:07:20.977Z", "updatedAt": "2025-04-24T08:07:20.977Z", "id": "123e4567-e89b-12d3-a456-426614174000", "name": "text" }
Delete a single fleet file by its ID.
DELETE /v1/fleet_files/{fleetFileID} HTTP/1.1 Host: cloud-api.calyptia.com Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
Deleted.
No content
Update a fleet file.
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=" }
Updated.