# 说明
更新特性,返回更新特性的数据
# url
https://api.tapd.cn/features
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
POST
# 请求数限制
一次插入一条数据
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 |
---|---|---|---|
id | 是 | integer | 特性ID |
workspace_id | 是 | integer | 项目ID |
name | 否 | string | 标题 |
description | 否 | string | 详细描述 |
owner | 否 | string | 负责人 |
# 调用示例及返回结果
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' -d 'workspace_id=10104801&id=1010104801000049305&description=更新特性' 'https://api.tapd.cn/features'
# 返回结果
{
"status": 1,
"data": {
"Feature": {
"id": "1010104801000049305",
"name": "444",
"description": "更新特性",
"created": "2020-11-24 16:58:15",
"owner": "",
"due": "1970-01-01",
"completed": "0",
"default": "0",
"module_id": "1010104801007551425",
"release_id": "0",
"release_name": "",
"priority": "0",
"estimate": "0",
"estimate_completed": "0",
"modified": "2020-12-08 16:09:10",
"workspace_id": "10104801"
}
},
"info": "success"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 特性字段说明
# 特性字段重要字段说明
字段 | 说明 |
---|---|
id | ID |
name | 标题 |
description | 详细描述 |
completed | 完成状态 |
due | 预计结束时间 |
created | 创建时间 |
module_id | 模块id |
modified | 最后修改时间 |
workspace_id | 项目id |