Get VM Console Credentials

Get a specific VM's console credentials, which are its port and password.

You will need first to:

Request URL Format:

https://api.ssdnodes.com/servers/{vm_id}/get-console-credentials

Header Format:

Authorization: Bearer 123456789123456789123456789123456789

Request Parameters:

Parameter Values Allowed Default Value Description
vm_id* <VM ID>
N/A
ID of the VM

Success Response Format:

[ { "status": "success", "msg": "Your VM console credentials are: vnc_port: 9063, vnc_pass: Nc#mq6Rv." } ]

Error Response Format:

[ { "status": "error", "msg": "VM ID does not exist." } ]

CURL Example

                curl -X GET https://api.ssdnodes.com/servers/1234/get-console-credentials -H "Authorization: Bearer 123456789123456789123456789123456789"
            

Copied!