# 批量统计资源标签使用数量

# 调用方式: GET

# 接口地址:

https://api.freelog.com/v2/resources/tags/statistics
1

# url传入参数说明:

参数 必选 类型及范围 说明
tagIds 必选 string 标签ID,多个用逗号分隔

# 返回说明:

返回值字段 字段类型 字段说明
tagId string 标签ID
tagName string 标签
count int 标签使用数量

# 返回示例

{
	"ret": 0,
	"errCode": 0,
	"errcode": 0,
	"msg": "success",
	"data": [{
		"tagId": "61148a77a69e5a9d7074d73c",
		"tagName": "tag1",
		"count": 0
	}, {
		"tagId": "623441e8b2f9b346d02f29c4",
		"tagName": "test",
		"count": 2
	}]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15