# 说明
更新花费工时,返回花费工时更新后的数据
# url
https://api.tapd.cn/timesheets
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
POST
# 请求数限制
每次只允许更新一条数据
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 |
---|---|---|---|
id | 是 | integer | id |
timespent | 否 | string | 花费工时 |
timeremain | 否 | string | 剩余工时 |
workspace_id | 是 | integer | 项目ID |
memo | 否 | string | 花费描述 |
# 调用示例及返回结果
# 更新工时花费记录ID为 1010158231001169003 的花费成为 5
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' -d 'id=1010158231001169003×pent=3&workspace_id=10158231' 'https://api.tapd.cn/timesheets'
# 返回结果
{
"status": 1,
"data": {
"Timesheet": {
"id": "1010158231001169003",
"entity_type": "story",
"entity_id": "1010158231500709717",
"timespent": "3",
"spentdate": "2020-05-05",
"owner": "anyechen",
"created": "2020-05-06 22:08:35",
"workspace_id": "10158231",
"memo": "hey"
}
},
"info": "success"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 花费工时字段说明
# 花费工时重要字段说明
字段 | 说明 |
---|---|
id | id |
entity_type | 对象类型,如story、task等 |
entity_id | 对象ID |
timespent | 花费工时 |
timeremain | 剩余工时 |
spentdate | 花费日期 |