The FileUpload API allows you to manage uploaded files for your DayZ server instances. Uploaded files are configuration files that you upload to the system for use with your server.
Note: All API requests require authentication. See the Authentication page for details.
Retrieve a paginated list of uploaded files for a specific instance.
GET /api/instance/{instance_sid}/file-upload
Parameter | Type | Description |
---|---|---|
instance_sid
|
string | The SID of the instance |
Retrieve details of a specific uploaded file.
GET /api/instance/{instance_sid}/file-upload/{file_upload_sid}
Upload a new file for an instance.
Note: File uploads must be sent as multipart/form-data. The file size limit is determined by your user plan.
POST /api/instance/{instance_sid}/file-upload
Update an existing uploaded file.
PATCH /api/instance/{instance_sid}/file-upload/{file_upload_sid}
Delete an uploaded file.
DELETE /api/instance/{instance_sid}/file-upload/{file_upload_sid}