# 说明
更新缺陷下拉类型自定义字段候选值
# url
https://api.tapd.cn/custom_field_configs/update_bug_select_field_options
# HTTP请求方式
POST
# 请求数限制
每次只允许更新一个字段,并且是全量更新这个字段的所有侯选值。
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 | |
---|---|---|---|---|
workspace_id | 是 | integer | 项目ID | 无 |
id | 是 | integer | 19位长度的自定义字段配置ID | 可以通过接口获取缺陷自定义字段配置 来获取 |
options | 是 | string | 候选值。以英文竖线隔开 | 无 |
# 调用示例及返回结果
# 更新需求自定义配置ID为 1010104801214991279 的侯选值为 开发,测试,产品,运营
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' -d 'options=开发|测试|产品|运营&id=1010104801214991279&workspace_id=10104801' 'https://api.tapd.cn/custom_field_configs/update_bug_select_field_options'
# 返回结果
{
"status": 1,
"data": {
"status": 1
},
"info": "success"
}
1
2
3
4
5
6
7
2
3
4
5
6
7
# 返回说明
返回 | 说明 |
---|---|
status | 取值1为成功,0为失败 |