# 说明

计算符合查询条件的任务数量并返回

# url

https://api.tapd.cn/tasks/count

# 支持格式

JSON/XML(默认JSON格式)

# HTTP请求方式

GET

# 请求数限制

只返回任务数量

# 请求参数

字段名 必选 类型及范围 说明 特殊规则
id integer id 支持多ID查询、模糊匹配
name string 任务标题 支持模糊匹配
description string 任务详细描述
workspace_id integer 项目ID
creator string 创建人 支持模糊匹配
created datetime 创建时间 支持时间查询
modified datetime 最后修改时间
status string 状态 支持枚举查询
label string 标签查询 支持枚举查询,5月30号上线
owner string 任务当前处理人 支持模糊匹配
cc string 抄送人
begin date 预计开始 支持时间查询
due date 预计结束 支持时间查询
story_id integer 关联需求的ID 支持多ID查询
iteration_id integer 所属迭代的ID
priority string 优先级。为了兼容自定义优先级,请使用 priority_label 字段,详情参考:如何兼容自定义优先级
priority_label string 优先级。推荐使用这个字段
progress integer 进度
completed datetime 完成时间 支持时间查询
effort_completed string 完成工时
exceed float 超出工时
remain float 剩余工时
effort string 预估工时
custom_field_* string或者integer 自定义字段参数,具体字段名通过接口 获取任务自定义字段配置 获取 支持枚举查询

# 调用示例及返回结果

# 获取项目下的任务数量

# curl 使用 Basic Auth 鉴权调用示例

curl -u 'api_user:api_password' 'https://api.tapd.cn/tasks/count?workspace_id=10158231'

# 返回结果

{
    "status": 1,
    "data": {
        "count": 1
    },
    "info": "success"
}
1
2
3
4
5
6
7

# 任务状态(status)取值字段说明

取值 字面值
open 未开始
progressing 进行中
done 已完成

# 任务优先级(priority)取值字段说明

为了兼容自定义优先级,请使用 priority_label 字段,详情参考:如何兼容自定义优先级下面取值将不再使用

取值 字面值
4 High
3 Middle
2 Low
1 Nice To Have
上次更新: 2024-06-13 11:25:32