Core instance files
Delete Core Instance File
Delete a file within a core instance.
DELETEhttps://cloud-api.calyptia.com/v1/core_instance_files/{coreInstanceFileID}
Authorization
Path parameters
coreInstanceFileID*string (uuid)
Response
OK
Body
deleted*boolean
deletedAt*nullable string (date-time)
Request
Response
Update Core Instance File
Update a file within a core instance.
The file will be updated with the given name and content.
If encypted
is set to true
, the file will be encrypted using the
core instance's encryption key.
PATCHhttps://cloud-api.calyptia.com/v1/core_instance_files/{coreInstanceFileID}
Authorization
Path parameters
coreInstanceFileID*string (uuid)
Body
namenullable string
Example: "myfile"
contentsnullable string (byte)
Optional contents of the file to be updated in base 64 format.
encryptednullable boolean
Response
OK
Body
updatedAt*string (date-time)
Request
Response