Contents
Update Issue Type
Updates information about Issue Type.
Role
Administrator
Normal User
Method
PATCH
URL
/api/v2/projects/:projectIdOrKey/issueTypes/:id
URL parameters
Parameter Name | Type | Description |
---|---|---|
projectIdOrKey | String | Project ID or Project Key |
id | Number | Issue Type ID |
Form parameters
Content-Type:application/x-www-form-urlencoded
Parameter Name | Type | Description |
---|---|---|
name | String | Issue Type Name |
color | String | Background color : available ”#e30000" "#990000" "#934981" "#814fbc" "#2779ca" "#007e9a" "#7ea800" "#ff9200" "#ff3265" "#666665” |
templateSummary | String | Subject |
templateDescription | String | Description |
Response example
Status Line / Response Header
HTTP/1.1 200 OK
Content-Type:application/json;charset=utf-8
Response Body
{
"id": 1,
"projectId": 1,
"name": "Bug",
"color": "#990000",
"displayOrder": 0,
"templateSummary": "Subject",
"templateDescription": "Description"
}