转换安卓版本
POST /api/v1/cloudPhone/convertVersion
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
| images | array | 是 | 转换数据 |
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
| image_id | string | 是 | 云手机ID |
| os | string | 是 | 安卓版本,"10": Android10;"12A": Android12(区域A); "11": Android11; "15":Android15; "12B": Android12(区域B); "15pro": Android15(Pro) |
{
"images": [
{
"image_id": "Lx2jt",
"os": "15pro"
},
{
"image_id": "r5wfl",
"os": "10"
}
]
}
{
"code": 200,
"data": {
"success": [
"Lx2jt",
"r5wfl"
],
"fail": [],
"fail_reason": {}
},
"message": "Success"
}