# 说明
计算符合查询条件的花费工时数量并返回
# url
https://api.tapd.cn/timesheets/count
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
GET
# 请求数限制
只返回花费工时数量
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 | 特殊规则 |
---|---|---|---|---|
id | 否 | integer | id | 支持多ID查询 |
entity_type | 否 | string | 对象类型,如story、task、bug等 | |
entity_id | 否 | integer | 对象ID | |
timespent | 否 | string | 花费工时 | |
spentdate | 否 | date | 花费日期 | 支持时间查询 |
owner | 否 | string | 花费创建人 | |
created | 否 | datetime | 创建时间 | 支持时间查询 |
workspace_id | 是 | integer | 项目ID | |
memo | 否 | string | 花费描述 | |
is_delete | 否 | integer | 是否已删除。默认取 0,不返回已删除的工时记录。取 1 可以返回已删除的记录 |
# 调用示例及返回结果
# 获取项目下花费工时的数量
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' 'https://api.tapd.cn/timesheets/count?workspace_id=10158231'
# 返回结果
{
"status": 1,
"data": {
"count": 14
},
"info": "success"
}
1
2
3
4
5
6
7
2
3
4
5
6
7