Retrieve the list of cloud phones, supports pagination, with a maximum of 100 records per page.
POST
/api/v1/cloudPhone/list
Parameter | Type | Required | Description |
---|---|---|---|
group_id | string | No | Group ID, can be obtained from the cloud phone group list |
page | int | No | Request page number, defaults to the first page if not provided |
pagesize | int | No | Number of items per page, defaults to 10 items/page if not provided |
{
"page": 1,
"pagesize": 100
}
{
"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 overdue; 10 Powering on; 11 Configuring; 12 Configuration failed
"os": "Android 12", // Operating system
"size": "30.08G", // Size
"created_at": "2024-04-10 19:14:56",
"expired_at": "2024-06-10 19:14:56",
"ip": "xx",
"area": "xx",
"remark": "xx",
"adb": "127.0.0.1:20100",
"adb_password": ""
}
],
"page": 1,
"pagesize": 10,
"total": 1,
"total_page": 1
},
"message": "Success"
}