# 说明

计算符合查询条件的评论数量并返回

# 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

# 获取某条工作项评论的数量

# 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
上次更新: 2023-07-19 15:56:32