# 说明
计算符合查询条件的评论数量并返回
# url
https://api.tapd.cn/comments/count
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
GET
# 请求数限制
只返回评论数量
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 | 特殊规则 |
---|---|---|---|---|
id | 否 | integer | 评论ID | 支持多ID查询 |
title | 否 | string | 标题 | |
description | 否 | string | 内容 | |
author | 否 | string | 评论人 | |
entry_id | 否 | integer | 评论所依附的业务对象实体id | |
created | 否 | datetime | 创建时间 | 支持时间查询 |
modified | 否 | datetime | 最后更改时间 | 支持时间查询 |
workspace_id | 是 | integer | 空间ID |
# 调用示例及返回结果
# 获取空间下评论数量
# curl 调用示例
curl -u 'api_user:api_password' 'https://api.tapd.cn/comments/count?workspace_id=69993260'
# curl 使用 OAuth Access Token 鉴权调用示例
curl -H 'Authorization: Bearer ACCESS_TOKEN' 'https://api.tapd.cn/comments/count?workspace_id=69993260'
# 返回结果
{
"status": 1,
"data": {
"count": 67
},
"info": "success"
}
1
2
3
4
5
6
7
2
3
4
5
6
7
# 获取某条工作项评论的数量
# curl 调用示例
curl -u 'api_user:api_password' 'https://api.tapd.cn/comments/count?entry_id=1010104801074085199&workspace_id=69993260'
# curl 使用 OAuth Access Token 鉴权调用示例
curl -H 'Authorization: Bearer ACCESS_TOKEN' 'https://api.tapd.cn/comments/count?entry_id=1010104801074085199&workspace_id=69993260'
# 返回结果
{
"status": 1,
"data": {
"count": 5
},
"info": "success"
}
1
2
3
4
5
6
7
2
3
4
5
6
7