# 查看用户标签列表

# 调用方式: GET

# 接口地址:

https://api.freelog.com/v2/users/tags
1

# 返回说明:

返回值字段 字段类型 字段说明
tagId int 标签ID
tag string 标签名称
type string 标签来源 1:手动 2:自动
totalSetCount string 总设置数量

# 返回示例

{
	"ret": 0,
	"errCode": 0,
	"errcode": 0,
	"msg": "success",
	"data": [{
		"tagId": 15,
		"status": 0,
		"tag": "测试用户",
		"type": 1,
		"totalSetCount": 1,
		"createDate": "2020-12-02T08:33:29.738Z",
		"updateDate": "2020-12-03T09:11:52.540Z"
	}, {
		"tagId": 16,
		"status": 0,
		"tag": "新创建的标签",
		"type": 1,
		"totalSetCount": 0,
		"createDate": "2020-12-03T09:08:06.944Z",
		"updateDate": "2020-12-03T10:14:17.603Z"
	}]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23