Contents
Update Version/Milestone
Updates information about Version/Milestone.
Role
Administrator
Normal User
Method
PATCH
URL
/api/v2/projects/:projectIdOrKey/versions/:id
URL parameters
Parameter Name | Type | Description |
---|---|---|
projectIdOrKey | String | Project ID or Project Key |
id | Number | Version ID |
Form parameters
Content-Type:application/x-www-form-urlencoded
Parameter Name | Type | Description |
---|---|---|
name (Required) | String | Version Name |
description | String | Version Description |
startDate | String | Start Date (yyyy-MM-dd) |
releaseDueDate | String | End Date (yyyy-MM-dd) |
archived | Boolean | archived |
Response example
Status Line / Response Header
HTTP/1.1 200 OK
Content-Type:application/json;charset=utf-8
Response Body
{
"id": 3,
"projectId": 1,
"name": "wait for release",
"description": "",
"startDate": null,
"releaseDueDate": null,
"archived": false,
"displayOrder": 0
}