如何通过 REST API 更新 JIRA 中的自定义字段?
How to update custom field in JIRA via REST API?
在 "resolution" 更改为 "fixed" 时应更新此(分辨率描述)自定义文件,因此我使用 "transition" REST API 调用来执行 it.i 已通过 REST API call.but 传递以下 jason 字符串,没有按预期工作的迹象。我不能用 "transition" REST API 调用更改这两个字段吗?
{"update": {"resolution description": [{ "add": { "body": "" + errors + "" }}]},
"transition": { "id": "5" }}
"errors" 是一个具有硬编码值的变量。
我找到了这个问题的答案 question.I 也把这个问题放在了 here. To update a custom field using REST API you can basically write a JSON string like this. For more information follow this link 中,这个网站清楚地包含了通过 REST 访问 JIRA 自定义字段时需要知道的一切 API .
{
"fields": {
"customfield_id": {"This is a shorthand for a set operation on a text custom field"},
"resolution": {"name": "Fixed"}
},
"transition": {
"id": "5"
}
}
在 "resolution" 更改为 "fixed" 时应更新此(分辨率描述)自定义文件,因此我使用 "transition" REST API 调用来执行 it.i 已通过 REST API call.but 传递以下 jason 字符串,没有按预期工作的迹象。我不能用 "transition" REST API 调用更改这两个字段吗?
{"update": {"resolution description": [{ "add": { "body": "" + errors + "" }}]},
"transition": { "id": "5" }}
"errors" 是一个具有硬编码值的变量。
我找到了这个问题的答案 question.I 也把这个问题放在了 here. To update a custom field using REST API you can basically write a JSON string like this. For more information follow this link 中,这个网站清楚地包含了通过 REST 访问 JIRA 自定义字段时需要知道的一切 API .
{
"fields": {
"customfield_id": {"This is a shorthand for a set operation on a text custom field"},
"resolution": {"name": "Fixed"}
},
"transition": {
"id": "5"
}
}