GET /dashboard/service/{id}/dedicated/virtual-media/attached

Get attached virtual media

Returns the currently attached virtual media (ISO) name.

Parameters

NameTypeInDescription
id*
integerpathThe service ID of the dedicated server

Response

200
403
404
successboolean
dataobject
attachedMediastringnullable

Name of the attached ISO, or null if none attached

Request

curl -X GET "https://api.royalehosting.net/dashboard/service/{id}/dedicated/virtual-media/attached" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "x-organization-id: YOUR_ORG_ID"

Response

{
  "success": true,
  "data": {
    "attachedMedia": "ubuntu-24.04-live-server-amd64.iso"
  }
}