Enable or disable VNC
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
Request Code Samples
curl --location --request POST '/servers/69/vnc' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"action": "enable"
}'
Responses
application/json {
"data": {
"vnc": {
"ip": "192.168.4.2",
"hostname": null,
"port": 5903,
"password": "ZNYonJeU",
"wss": {
"token": "69316231-d34a-4d36-b754-ffd3253df96d",
"url": "/vnc/?token=69316231-d34a-4d36-b754-ffd3253df96d"
},
"enabled": false
},
"queueId": null
}
}
Modified at 2025-11-14 17:32:49