# 说明
项目集批量关联/取消关联业务对象
# url
https://api.tapd.cn/program/program_bind_entities
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
POST
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 |
---|---|---|---|
workspace_id | 是 | integer | 项目集 id |
action | 是 | string | 可选值:bind/unbind,分表表示关联、取消关联 |
entity_type | 是 | string | 可选值:story/bug |
entity_ids | 是 | string | 关联/取消关联的id |
# 调用示例及返回结果
# 获取项目成员列表
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' -d 'workspace_id=项目集ID&entity_type=story&action=bind&entity_ids=具体id1,具体id2' 'https://api.tapd.cn/program/program_bind_entities'
# 返回结果
{"status":1,"data":"ok","info":"success"}
1