GET /dashboard/service/{id}/dedicated/console

Get console access

Returns VNC console connection details for accessing the server console.

Parameters

NameTypeInDescription
id*
integerpathThe service ID of the dedicated server

Response

200
403
404
successboolean
dataobject
connectionIdstring

Unique connection identifier

requestedPortinteger
websocketUrlstring

WebSocket URL for VNC connection

passwordstring

VNC password for authentication

Request

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

Response

{
  "success": true,
  "data": {
    "connectionId": "string",
    "requestedPort": 443,
    "websocketUrl": "wss://vnc.royalehosting.net/device-123-console-a1b2c3d4",
    "password": "string"
  }
}