Tag Group: list
Overview
Return a collection of tag group that match the API request parameters.
API URL
/api/taggroup/query
HTTP Method
GET
URL Parameters
Name | Type | Required | Description |
---|---|---|---|
access_token or user_access_token | String | Requires | Specify the API access_token of the account or the user_access_token obtained after the user logged in. |
Response
An HTTP code of 200 is responded for each successful data requests. The message body contains a JSON object listing all tag group.
Examples
{
"code": 0,
"msg": "Successful operation",
"msg_en": "Successful operation",
"data": [
{
"id": 1,
"name": "TagGroup1",
"tags": "43,1",
"type": "1,4,6,10,5,3,14",
"create_time": "2022-02-11T07:23:00Z",
"update_time": "2022-02-11T07:23:00Z",
"status": 0
},
......
],
"exe_time": "0.002053"
}