PUT api/2.0/project/milestone/{id}
Updates the selected milestone changing the milestone parameters (title, deadline, status, etc.) specified in the request
Name |
Description |
Type |
Example |
id
sent in url
|
Milestone ID
|
number
|
1234
|
title
sent in body
|
Title
|
string
|
some text
|
deadline
sent in body
|
Deadline
|
Date and Time
|
Roundtrip format: 2008-04-10T06-30-00.000Z
|
isKey
sent in body
|
Is key or not
optional
|
Bool value
|
true
|
status
sent in body
|
Status
|
Open, Closed
|
|
isNotify
sent in body
|
Remind me 48 hours before the due date
optional
|
Bool value
|
true
|
description
sent in body
|
Milestone description
|
string
|
some text
|
projectID
sent in body
|
Project ID
|
number
|
1234
|
responsible
sent in body
|
Milestone responsible
|
guid
|
9924256A-739C-462b-AF15-E652A3B1B6EB
|
notifyResponsible
sent in body
|
Notify responsible
|
Bool value
|
true
|
Sending data in application/json:
{
title:"New title",
deadline:"2011-03-23T14:27:14",
isKey:false,
status:"Open"
}
application/json
{
"status": 0,
"response": {
"canEdit": true,
"canDelete": false,
"id": 10,
"title": "Sample Title",
"description": "Sample description",
"projectOwner": {
"id": 123,
"title": "Sample project",
"status": 0,
"isPrivate": false
},
"deadline": "2019-12-15T06:37:50.9304816Z",
"isKey": false,
"isNotify": false,
"activeTaskCount": 15,
"closedTaskCount": 5,
"status": 0,
"responsible": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"updatedBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"created": "2019-12-15T06:37:50.9304816Z",
"createdBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"updated": "2019-12-15T06:37:50.9304816Z"
}
}
text/xml
<result>
<status>0</status>
<response>
<canEdit>true</canEdit>
<canDelete>false</canDelete>
<id>10</id>
<title>Sample Title</title>
<description>Sample description</description>
<projectOwner>
<id>123</id>
<title>Sample project</title>
<status>0</status>
<isPrivate>false</isPrivate>
</projectOwner>
<deadline>2019-12-15T06:37:50.9304816Z</deadline>
<isKey>false</isKey>
<isNotify>false</isNotify>
<activeTaskCount>15</activeTaskCount>
<closedTaskCount>5</closedTaskCount>
<status>0</status>
<responsible>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</responsible>
<updatedBy>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</updatedBy>
<created>2019-12-15T06:37:50.9304816Z</created>
<createdBy>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</createdBy>
<updated>2019-12-15T06:37:50.9304816Z</updated>
</response>
</result>