获取字段的下拉选项
POST
/issue/select-options请求参数
Header 参数
Content-Type
string
必需
示例值:
application/json
accessToken
string
必需
示例值:
{{accessToken}}
Body 参数application/json
customFiledIds
array[integer <int64>]
筛选条件的字段id
projectId
integer <int64>
项目编号
示例
{
"customFiledIds": [
1,
2
],
"projectId": 1
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSON*/*
OK
数据结构
filterOptionVOList
array [object {2}]
字段筛选值
name
string
选项名称
value
object
选项值
customFieldId
integer <int64>
字段id
示例
{
"code": "0",
"data": [
{
"filterOptionVOList": [
{
"name": "xxx",
"value": 1
}
],
"customFieldId": 1
}
]
}
最后修改时间: 4 个月前