Get the status of cloud phones.
POST
/api/v1/cloudPhone/status
Parameter | Type | Required | Description |
---|---|---|---|
image_ids | array | Yes | Cloud phone IDs |
{
"image_ids": ["xx"]
}
{
"code": 200,
"data": {
"list": [
{
"id": "xx", // Cloud phone ID
"name": "xx", // Cloud phone name
"status": 1, // Status:
// 0 - Not configured; 1 - Powered on;
// 2 - Powered off; 3 - Expired;
// 4 - Renewal needed; 10 - Powering on;
// 11 - Configuring; 12 - Configuration failed
}
]
},
"message": "Success"
}