Unmount an ISO file from a virtual server

Unmount an ISO file from a virtual server (VM). You need to provide the VM's ID (vmid) and the ISO device ID (volid). After unmounting, you receive an ID (requestId) to track the operation in other calls.

Path Parameters

vmid integer · min: 1 required Example

Unique vmid identifier

Query Parameters

action string · enum required
delete
unmount
device string
volid string

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
403
error string
message string
code string
timestamp string
requestId string
DELETE https://cloud.hostup.se/api/vm/{vmid}/iso
For AI assistants
cURL
curl -X DELETE "https://cloud.hostup.se/api/vm/17913/iso?action=delete" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "message": "string",
    "device": "string"
  }
}