Retrieve information about available and mounted ISO images for a specific virtual server (VM). You need the VM's ID (vmid) to use this endpoint. IDs needed for mounting or unmounting ISO images are also returned.
vmid integer · min: 1 required Example Unique vmid identifier
Accept Example Content-Type Example success boolean timestamp string requestId string data object https://cloud.hostup.se/api/vm/{vmid}/iso curl -X GET "https://cloud.hostup.se/api/vm/16212/iso" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" {
"success": true,
"timestamp": "string",
"requestId": "string",
"data": {
"available": [
"string"
],
"mounted": [
{
"device": "string",
"iso": "string",
"mounted": true,
"config": "string",
"isCloudInit": true
}
],
"bootOrder": {
"order": [
"string"
],
"devices": {
"scsi0": "string",
"ide3": "string",
"ide2": "string",
"ide1": "string",
"net0": "string"
},
"availableDevices": [
{
"id": "string",
"name": "string",
"type": "string"
}
],
"rawConfig": "string"
},
"availableDevices": [
{
"device": "string",
"type": "string",
"description": "string",
"inUse": true
}
],
"proxmoxVmId": "string"
}
}