The status command retrieves the status and basic metrics of the instance.

JSON Input Data Format
{
    "id": string,
    "cloudid": string
}
id * Specifies the ID of the instance.
cloudid * Indicates the cloud ID where the instance is situated.
* Indicates a mandatory field.

Code Snippets
Here are several code snippets provided for your direct use. Simply select your preferred tool/language by clicking on it.


Successful Response
{
    "result": "OK",
    "ipaddress": "10.1.192.9",
    "status": "RUNNING",
    "os": "amazon",
    "cpuStat": "1",
    "memStat": "39",
    "diskStat": "67"
]
}

Failed Response
{
    "result": "ERR",
    "message": "Error message ..."
}