Set ADB Connection IP Whitelist
POST /api/v1/cloudPhone/setAdbIpWhitelist
| Parameter | Type | Required | Description |
|---|---|---|---|
| ips | array | Yes | IP whitelist. Fuzzy matching is not supported. A maximum of 10 entries is allowed. Examples: 1.1.1.1 or 2.2.2.2. |
| append | bool | No | Whether to append IPs. true means yes; false means no. If not provided, the default is false, and the existing IP whitelist will be overwritten. |
{
"ips": [
"1.1.1.1",
"2.2.2.2"
],
"append": false
}
{
"code": 200,
"data": {
"message": "success"
},
"message": "success"
}