Get ISO image information for a virtual server

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.

Path Parameters

vmid integer · min: 1 required Example

Unique vmid identifier

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/vm/{vmid}/iso
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/vm/16212/iso" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "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"
  }
}