Group Management
FreshCreate, delete, query, and modify groups for organizing cloud phones.
Create Group
URL: https://openapi.geelark.com/open/v1/group/addMethod: POST
| Parameter | Required | Type | Description |
|---|---|---|---|
| list | Yes | array | Group items |
| list[].name | Yes | string | Group name (max 50 chars) |
| list[].remark | No | string | Remark (max 500 chars) |
Delete Group
URL: https://openapi.geelark.com/open/v1/group/delete
| Parameter | Required | Type | Description |
|---|---|---|---|
| ids | Yes | array[string] | Group IDs |
Query Groups
URL: https://openapi.geelark.com/open/v1/group/list
| Parameter | Required | Type | Description |
|---|---|---|---|
| page | Yes | integer | Page number |
| pageSize | Yes | integer | Items per page |
| ids | No | array[string] | Filter by IDs |
| names | No | array[string] | Filter by names |
| remarks | No | array[string] | Filter by remarks |
Modify Group
URL: https://openapi.geelark.com/open/v1/group/update
| Parameter | Required | Type | Description |
|---|---|---|---|
| list | Yes | array | Group updates |
| list[].id | Yes | string | Group ID |
| list[].name | No | string | New name (max 50 chars) |
| list[].remark | No | string | New remark (max 500 chars) |
Error Codes
| Code | Description |
|---|---|
| 43030 | Group name is empty |
| 43031 | Group name already exists |
| 43032 | Group does not exist |
| 43033 | Group name does not exist |
| 43034 | Group remark does not exist |
| 43035 | Ungrouped items cannot be edited |