Get VM Root Password

Get a specific VM's root password.

You will need first to:

Request URL Format:

https://api.ssdnodes.com/servers/{vm_id}/get-root-password

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 root password is: 965CYt1KNpdY" } ]

Error Response Format:

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

CURL Example

                curl -X GET https://api.ssdnodes.com/1234/get-root-password -H "Authorization: Bearer 123456789123456789123456789123456789"
            

Copied!