# 说明
创建需求关联关系
# url
https://api.tapd.cn/stories/add_story_link_relations
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
POST
# 请求数限制
一次只能创建一条关联关系
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 |
---|---|---|---|
workspace_id | 是 | integer | 项目ID |
src_story_id | 是 | integer | 源需求ID |
target_story_id | 是 | integer | 目标需求ID |
# 调用示例及返回结果
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' -d 'workspace_id=10104801&src_story_id=1010104801115147834&target_story_id=1010104801115129060' 'https://api.tapd.cn/stories/add_story_link_relations'
# 返回结果
{
"status": 1,
"data": {
"success": 1
},
"info": "success"
}
1
2
3
4
5
6
7
2
3
4
5
6
7