Tag Management
FreshCreate, delete, search, and modify tags for organizing cloud phones.
Create Tag
URL: https://openapi.geelark.com/open/v1/tag/addMethod: POST
| Parameter | Required | Type | Description |
|---|---|---|---|
| list | Yes | array | Tag items |
| list[].name | Yes | string | Tag name (max 30 chars) |
| list[].color | No | string | Tag color |
Supported Colors
red, orange, yellow, green, cyan, blue, purple, pink, grey
Delete Tag
URL: https://openapi.geelark.com/open/v1/tag/delete
| Parameter | Required | Type | Description |
|---|---|---|---|
| ids | Yes | array[string] | Tag IDs |
Search Tags
URL: https://openapi.geelark.com/open/v1/tag/list
| Parameter | Required | Type | Description |
|---|---|---|---|
| page | Yes | integer | Page number |
| pageSize | Yes | integer | Items per page |
| ids | No | array[string] | Filter by tag IDs |
| names | No | array[string] | Filter by names |
| colors | No | array[string] | Filter by colors |
Modify Tags
URL: https://openapi.geelark.com/open/v1/tag/update
| Parameter | Required | Type | Description |
|---|---|---|---|
| list | Yes | array | Tag modifications |
| list[].id | Yes | string | Tag ID |
| list[].name | No | string | New name |
| list[].color | No | string | New color |
Error Codes
| Code | Description |
|---|---|
| 43020 | Tag name is empty |
| 43021 | Tag already exists |
| 43022 | Tag does not exist |
| 43023 | Tag color not supported |
| 43024 | Tag name does not exist |