Batch power on, supports powering on up to 20 cloud phones simultaneously.
Note: Powering on is an asynchronous operation. You can check the cloud phone status to determine if the power-on was successful.
Note: If using temporary computing power to power on, billing starts immediately after powering on, and you need to call the power-off interface to stop billing!!!
POST
/api/v1/cloudPhone/powerOn
Parameter | Type | Required | Description |
---|---|---|---|
image_ids | array | Yes | Cloud phone IDs |
{
"image_ids": ["xx"]
}
{
"code": 200,
"data": {
"success": [ // Successfully requested power-on cloud phone IDs
"xx"
],
"fail": [ // Failed power-on cloud phone IDs
"xx"
]
},
"message": "Success"
}