# 说明

获取发布评审

# url

https://api.tapd.cn/launch_forms

# 支持格式

JSON/XML(默认JSON格式)

# HTTP请求方式

GET

# 请求数限制

默认返回 30 条。可通过传 limit 参数设置,最大取 200。也可以传 page 参数翻页

# 请求参数

字段名 必选 类型及范围 说明 特殊规则
workspace_id integer 项目ID
id integer 发布评审ID
creator string 创建人
created datetime 创建时间 支持时间查询
title string 标题
status string 状态
version_type string 版本类型
baseline string 基线
release_model string 发布模块
roadmap_version string 路标版本
release_type string 发布类型
change_type string 变更类型
signed_by string 签发人
archived_by string 发布确认人
cc string 抄送人
change_notifier string 变更通知人
limit integer 设置返回数量限制,默认为30
page integer 返回当前数量限制下第N页的数据,默认为1(第一页)
fields string 设置获取的字段,多个字段间以','逗号隔开

# 调用示例及返回结果

# 获取发布评审

# curl 使用 Basic Auth 鉴权调用示例

curl -u 'api_user:api_password' 'https://api.tapd.cn/launch_forms?workspace_id=10104801'

# 返回结果

{
    "status": 1,
    "data": [
        {
            "LaunchForm": {
                "id": "1010104801079697767",
                "title": null,
                "name": "202101150008",
                "creator": "v_xuanfang",
                "created": "2021-01-15 19:47:37",
                "workspace_id": "10104801",
                "status": "LAUNCHFORM_STATUS_INITIAL",
                "version_type": null,
                "baseline": null,
                "release_model": null,
                "roadmap_version": null,
                "release_type": "正常发布",
                "change_type": null,
                "signed_by": null,
                "archived_by": null,
                "cc": null,
                "change_notifier": null,
                "signed": null,
                "archived": null,
                "signer_result": null,
                "signer_comment": null,
                "release_result": null,
                "release_comment": null,
                "test_path": null,
                "created_path": null,
                "remark": null,
                "participator": ";v_xuanfang;",
                "template_id": "1010104801065798331",
                "iteration_id": null,
                "release_id": null,
                "flows": "LAUNCHFORM_STATUS_INITIAL",
                "custom_field_one": null,
                "custom_field_two": null,
                "custom_field_three": null,
                "custom_field_four": null,
                "custom_field_five": null,
                "custom_field_six": null,
                "custom_field_seven": null,
                "custom_field_eight": null,
                "custom_field_9": null,
                "custom_field_10": null,
                "custom_field_11": null,
                "custom_field_12": null,
                "custom_field_13": null,
                "custom_field_14": null,
                "custom_field_15": null,
                "custom_field_16": null,
                "custom_field_17": null,
                "custom_field_18": null,
                "custom_field_19": null,
                "custom_field_20": null,
                "custom_field_21": null,
                "custom_field_22": null,
                "custom_field_23": null,
                "custom_field_24": null,
                "custom_field_25": null,
                "custom_field_26": null,
                "custom_field_27": null,
                "custom_field_28": null,
                "custom_field_29": null,
                "custom_field_30": null,
                "custom_field_31": null,
                "custom_field_32": null,
                "custom_field_33": null,
                "custom_field_34": null,
                "custom_field_35": null,
                "custom_field_36": null,
                "custom_field_37": null,
                "custom_field_38": null,
                "custom_field_39": null,
                "custom_field_40": null
            }
        }
    ],
    "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

# 返回字段说明

字段 说明
id 评审ID
workspace_id 所属项目ID
created 创建时间
title 标题
status 状态
version_type 版本类型
baseline 基线
release_model 发布模块
roadmap_version 路标版本
release_type 发布类型
change_type 变更类型
signed_by 签发人
archived_by 发布确认人
cc 抄送人
change_notifier 变更通知人
signed 签发时间
archived 归档时间
signer_result 签发结论
signer_comment 签发意见
release_result 发布结果
release_comment 发布意见
test_path 测试路径
created_path 归档路径
remark 备注
participator 参与人
template_id 模板ID
iteration_id 迭代ID
release_id 发布计划ID
custom_field_* 自定义字段
上次更新: 2022-06-28 16:07:18