A brief description
request URL
request method
Request Query parameter
| Parameter | Example Value | Required | Type | Description |
|---|
| token | | Yes | string | authentication token |
Example of successful return
{
"data": {
"list": [
{
"tagId": "1024",
"name": "hello",
"orderby": 0,
"time": "2021-12-05 09:41"
},
{
"tagId": "2048",
"name": "world",
"orderby": 0,
"time": "2021-12-05 09:41"
}
]
},
"code": 0,
"msg": "OK"
}
Parameter description of the successful return example
| Parameter | Type | Description |
|---|
| list | array | group list |
| list.tagId | string | group ID |
| list.name | string | group name |
| list.orderby | int | group sorting |
| list.time | string | group creation time |
| code | int | 0: successful; not 0: failed |
Remark