python 无法将自定义字段值添加到问题

myss37ts  于 2023-03-16  发布在  Python
关注(0)|答案(1)|浏览(190)
res=issue.update(fields={"customfield_25361":[{"value":name}]})
print(res)


error:

response text = {"errorMessages":[],"errors":{"customfield_25361":"data was not an object"}}

将自定义字段的值添加到JIRA问题

hlswsv35

hlswsv351#

自定义字段的类型是什么?
以下是更新组件字段的示例:

update = {
    "components": [
        {
            "add": {
                "name": str(NAME)
            }
        }
    ]
}
issue.update(notify=False, update=update)

相关问题