# 说明
返回符合查询条件的所有测试用例&测试计划
# url
https://api.tapd.cn/stories/get_story_tcase
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
GET
# 请求数限制
返回全部数据
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 | 特殊规则 |
---|---|---|---|---|
workspace_id | 是 | integer | 项目ID | |
story_id | 是 | integer | 需求id | |
include_test_plan | 否 | integer | 是否包含测试计划 | 取值为1或0,默认为1 |
# 调用示例及返回结果
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' 'https://api.tapd.cn/stories/get_story_tcase?workspace_id=20355782&story_id=1020355782854798505'
# 返回结果
{
"status": 1,
"data": [
{
"TestPlanStoryTcaseRelation": {
"id": "1020355782002187201",
"workspace_id": "20355782",
"test_plan_id": "1020355782077231877",
"story_id": "1020355782854798505",
"tcase_id": "0",
"sort": "0",
"creator": "terrysxu",
"created": "0000-00-00 00:00:00"
}
},
{
"TestPlanStoryTcaseRelation": {
"id": "1020355782002187207",
"workspace_id": "20355782",
"test_plan_id": "0",
"story_id": "1020355782854798505",
"tcase_id": "1020355782077234133",
"sort": "0",
"creator": "v_xuanfang",
"created": "2020-05-06 19:29:35"
}
}
],
"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
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
# 测试用例字段说明
# 测试用例重要字段说明
字段 | 说明 |
---|---|
id | 关系id |
workspace_id | 项目ID |
test_plan_id | 测试计划ID |
story_id | 需求ID |
tcase_id | 测试用例ID |
created | 关系创建时间 |
creator | 创建人 |
← 获取需求自定义字段配置 获取需求前后置关系 →