如何在Jira API中添加史诗链接

时间:2019-05-07 06:14:18

标签: jira

这是我的请求,customfield_14003是史诗链接字段,我尝试在请求中传递其值,但出现错误“期望字符串值作为史诗密钥”。

{
  "fields": {
    "project": {
      "id": "1111"
    },
    "issuetype": {
      "name": "test"
    },
    "priority": {
      "name": "test"
    },
    "labels": ["Chandler"],
    "customfield_10012": {
      "id": "test"
    },
    "fixVersions": [{
      "name": "11111"
    }],
    "summary": "test",
    "customfield_14003": {
      "name": "Checkout"
    },
    "description": "test"
  }
}

我试图用“值”替换“名称”,但也失败了。有谁知道在jira api中传递史诗链接的正确格式?

0 个答案:

没有答案