DELETE api/2.0/project/milestone/{id}
Deletes a milestone with the ID specified in the request.
Name |
Description |
Type |
Example |
id
sent in url
|
Milestone ID
|
number
|
1234
|
DELETE api/2.0/project/milestone/1234
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
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": "2023-01-27T05:35:45.2467602Z",
"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": "2023-01-27T05:35:45.2467602Z",
"createdBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"updated": "2023-01-27T05:35:45.2467602Z"
}
}
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>2023-01-27T05:35:45.2467602Z</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>2023-01-27T05:35:45.2467602Z</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>2023-01-27T05:35:45.2467602Z</updated>
</response>
</result>