# 说明
计算符合查询条件的标签数量并返回
# url
https://api.tapd.cn/label/count
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
GET
# 请求数限制
只返回标签数量
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 | 特殊规则 |
---|---|---|---|---|
workspace_id | 是 | integer | 项目ID | |
id | 否 | integer | id | 支持多ID查询 |
name | 否 | string | 标签名称 | 支持模糊匹配 |
creator | 否 | string | 创建人 | |
created | 否 | datetime | 创建时间 | 支持时间查询 |
# 调用示例及返回结果
# 获取项目下标签的数量
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' 'https://api.tapd.cn/label/count?workspace_id=10158231'
curl 'https://api.tapd.cn/label/count?workspace_id=10158231&access_token=ACCESS_TOKEN'
# 返回结果
{
"status": 1,
"data": {
"count": 1
},
"info": "success"
}
1
2
3
4
5
6
7
2
3
4
5
6
7