# 说明
新建工作项,返回新建工作项的数据
# url
https://api.tapd.cn/mini_items
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
POST
# 请求数限制
一次插入一条数据
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 |
---|---|---|---|
workspace_id | 是 | integer | 空间ID |
name | 是 | string | 标题 |
priority | 否 | string | 优先级 |
owner | 否 | string | 处理人 |
creator | 否 | string | 创建人 |
is_archived | 否 | boolean | 是否归档 |
begin | 否 | date | 预计开始 |
due | 否 | date | 预计结束 |
parent_id | 否 | integer | 父工作项ID |
category_id | 否 | integer | 分组 |
description | 否 | string | 详细描述 |
label | 否 | string | 标签,标签不存在时将自动创建,多个以英文坚线分格 |
cus_{$自定义字段别名} | 否 | string | 缺陷自定义字段值,参数名会由后台自动转义为custom_field_*,如:cus_自定义字段的名称 |
custom_field_* | 否 | string或者integer | 自定义字段参数,具体字段名通过接口 获取工作项自定义字段配置 获取 |
# 调用示例及返回结果
# 在空间下创建工作项
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' -d 'name=mini_item_created_by_api&workspace_id=69993260' 'https://api.tapd.cn/mini_items'
# curl 使用 OAuth Access Token 鉴权调用示例
curl -H 'Authorization: Bearer ACCESS_TOKEN' -d 'name=mini_item_created_by_api&workspace_id=69993260' 'https://api.tapd.cn/mini_items'
# 返回结果
{
"status": 1,
"data": {
"MiniItem": {
"id": "1069993260856110917",
"name": "mini_item_created_by_api",
"workspace_id": "69993260",
"category_id": "-1",
"status": "open",
"owner": "",
"begin": null,
"due": null,
"priority": "",
"label": "",
"description_type": "1",
"description": null,
"markdown_description": null,
"ancestor_id": "1069993260856110917",
"parent_id": "0",
"children_id": "|",
"level": "0",
"creator": "api_doc_oauth",
"created": "2023-07-17 20:28:31",
"modifier": "",
"modified": "2023-07-17 20:28:31",
"completed": null,
"has_attachment": "0",
"sort": "85546902100000",
"is_archived": "0",
"progress_manual": "0",
"participator": "",
"custom_field_one": "",
"custom_field_two": "",
"custom_field_three": "",
"custom_field_four": "",
"custom_field_five": "",
"custom_field_six": "",
"custom_field_seven": "",
"custom_field_eight": "",
"custom_field_9": "",
"custom_field_10": "",
"custom_field_11": "",
"custom_field_12": "",
"custom_field_13": "",
"custom_field_14": "",
"custom_field_15": "",
"custom_field_16": "",
"custom_field_17": "",
"custom_field_18": "",
"custom_field_19": "",
"custom_field_20": "",
"custom_field_21": "",
"custom_field_22": "",
"custom_field_23": "",
"custom_field_24": "",
"custom_field_25": "",
"custom_field_26": "",
"custom_field_27": "",
"custom_field_28": "",
"custom_field_29": "",
"custom_field_30": "",
"custom_field_31": "",
"custom_field_32": "",
"custom_field_33": "",
"custom_field_34": "",
"custom_field_35": "",
"custom_field_36": "",
"custom_field_37": "",
"custom_field_38": "",
"custom_field_39": "",
"custom_field_40": "",
"custom_field_41": "",
"custom_field_42": "",
"custom_field_43": "",
"custom_field_44": "",
"custom_field_45": "",
"custom_field_46": "",
"custom_field_47": "",
"custom_field_48": "",
"custom_field_49": "",
"custom_field_50": "",
"custom_field_51": "",
"custom_field_52": "",
"custom_field_53": "",
"custom_field_54": "",
"custom_field_55": "",
"custom_field_56": "",
"custom_field_57": "",
"custom_field_58": "",
"custom_field_59": "",
"custom_field_60": "",
"custom_field_61": "",
"custom_field_62": "",
"custom_field_63": "",
"custom_field_64": "",
"custom_field_65": "",
"custom_field_66": "",
"custom_field_67": "",
"custom_field_68": "",
"custom_field_69": "",
"custom_field_70": "",
"custom_field_71": "",
"custom_field_72": "",
"custom_field_73": "",
"custom_field_74": "",
"custom_field_75": "",
"custom_field_76": "",
"custom_field_77": "",
"custom_field_78": "",
"custom_field_79": "",
"custom_field_80": "",
"custom_field_81": "",
"custom_field_82": "",
"custom_field_83": "",
"custom_field_84": "",
"custom_field_85": "",
"custom_field_86": "",
"custom_field_87": "",
"custom_field_88": "",
"custom_field_89": "",
"custom_field_90": "",
"custom_field_91": "",
"custom_field_92": "",
"custom_field_93": "",
"custom_field_94": "",
"custom_field_95": "",
"custom_field_96": "",
"custom_field_97": "",
"custom_field_98": "",
"custom_field_99": "",
"custom_field_100": ""
}
},
"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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# 工作项字段说明
# 工作项重要字段说明
字段 | 说明 |
---|---|
id | ID |
name | 标题 |
priority | 优先级 |
label | 标签 |
status | 状态 |
owner | 处理人 |
creator | 创建人 |
begin | 预计开始 |
due | 预计结束 |
created | 创建时间 |
modified | 最后修改时间 |
completed | 完成时间 |
description_type | 详细描述类型 |
level | 距离根节点的深度 |
ancestor_id | 父子层级 |
progress_manual | 进度 |
category_id | 分组 |
parent_id | 父工作项 |
children_id | 子工作项 |
description | 详细描述 |
workspace_id | 空间ID |
is_archived | 是否归档 |
← 获取角色ID对照关系 更新工作项 →