从jira rest api获取基于项目密钥的项目类别

时间:2017-05-03 10:13:02

标签: jira jira-rest-api

我们正在开发一个Web项目,以便使用其余的api获取jira的特定项目密钥的项目类别列表并进行更新。 我找不到任何适合的api。 有没有人做过这样的事情。 提前谢谢。

1 个答案:

答案 0 :(得分:0)

JIRA REST API文档提到了这个简单明了的问题。

检索项目信息

使用GET /rest/api/2/project/{projectIdOrKey}获取有关特定项目的详细信息。此响应还将包含有关项目类别的信息,即:

"projectCategory": {
    "self": "http://www.example.com/jira/rest/api/2/projectCategory/10000",
    "id": "10000",
    "name": "FIRST",
    "description": "First Project Category"
}

更新项目

要更新类别,请使用PUT /rest/api/2/project/{projectIdOrKey}

您可以在请求正文中包含所需类别的ID,即:

{
    "key": "EX",
    "name": "Example",
    "projectTypeKey": "business",
    "projectTemplateKey": "com.atlassian.jira-core-project-templates:jira-core-project-management",
    "description": "Example Project description",
    "lead": "Charlie",
    "url": "http://atlassian.com",
    "assigneeType": "PROJECT_LEAD",
    "avatarId": 10200,
    "issueSecurityScheme": 10001,
    "permissionScheme": 10011,
    "notificationScheme": 10021,
    "categoryId": 10120
}