Menu

Batch Restart

Usage Instructions

Batch restart, supporting the simultaneous reboot of up to 20 cloud phones.

Note: Restarting is an asynchronous operation. You can determine whether the restart was successful by checking the status of the cloud phone.

Request Instructions

POST /api/v1/cloudPhone/restart

Request Parameters

Parameter Type Required Description
image_ids array Yes Cloud phone IDs

Request Example

json Copy
{
    "image_ids": ["xx"]
}

Response Example

json Copy
{
    "code": 200,
    "data": {
        "success": [ // Successfully powered-off cloud phone IDs
            "xx"
        ],
        "fail": [ // Failed power-off cloud phone IDs
            "xx"
        ],
        "fail_reason": {
            "xx": "restart error"
        }
    },
    "message": "Success"
}
Previous
Batch Power Off
Next
Cloud Phone Status
Last modified: 2025-03-07Powered by