# 说明

获取TAPD业务对象与构建记录的关联关系信息。

# SDK 方法名

nodeJs:

SDK使用方式 (opens new window)

插件中使用SDK

方法名::

getThirdRelations
1

# url

https://api.tapd.cn/third_relations

# HTTP请求方式

GET

# 支持格式

JSON/XML(默认JSON格式)

# HTTP请求方式

GET

# 请求数限制

一次只能获取一个构建记录与TAPD业务对象的关联关系 通过Git 数据查tapd数据:

# 请求参数

通过tapd数据查流水线构建记录数据:

字段名 必选 类型 说明 特殊规则
source_type string Git 资源类型 目前type可选值:build
workspace_id int tapd项目id
tapd_id int tapd对象id
tapd_type string tapd对象类型 目前可选值:story,task,bug

# 调用示例及返回结果

# curl 调用示例

curl -u 'api_user:api_password' -d 'source_type=build&tapd_id=1169354332001000176$tapd_type=story' 'https://api.tapd.cn/third_relations'

# 返回结果

{
    "status": 1,
    "data": [
        {
            "ThirdRelations": {
                "id": "1169354332001000003",
                "workspace_id": "69354332",
                "source_app_id": "1",
                "source_project_id": "111",
                "source_id": "222",
                "source_type": "build",
                "source_data": "",
                "source_tag": "",
                "tapd_id": "1169354332001000176",
                "workitem_type_id": "0",
                "tapd_type": "story",
                "created": "2024-12-05 15:46:33",
                "modified": "2024-12-05 15:46:33",
                "status": "1",
                "operator": "xxx"
            }
        },
        {
            "ThirdRelations": {
                "id": "1169354332001000004",
                "workspace_id": "69354332",
                "source_app_id": "1",
                "source_project_id": "444",
                "source_id": "333",
                "source_type": "build",
                "source_data": "",
                "source_tag": "",
                "tapd_id": "1169354332001000176",
                "workitem_type_id": "0",
                "tapd_type": "story",
                "created": "2024-12-05 15:46:48",
                "modified": "2024-12-05 15:59:03",
                "status": "1",
                "operator": "jin"
            }
        }
    ],
    "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

# 字段说明

# 关联关系字段说明

字段 说明
id 关联ID
workspace_id 项目ID
source_project_id 流水线id
source_id 流水线构建记录id
source_type 资源类型
tapd_id tapd对象ID
tapd_type tapd对象类型
created 创建时间
modified 修改时间
status 关联状态
上次更新: 2024-12-09 16:18:27