GET api/2.0/project/{id}/milestone/{status}
Returns a list of all the milestones with the selected status from a project with the ID specified in the request.
Name |
Description |
Type |
Example |
id
sent in url
|
Project ID
|
number
|
1234
|
status
sent in url
|
Milestone status ("Open" or "Closed")
|
Open, Closed
|
Open
|
GET api/2.0/project/1234/milestone/%22Open%22
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
application/json
{
"status": 0,
"response": [
{
"ProjectOwner": {
"Id": "123",
"Title": "Sample project",
"Status": 0,
"IsPrivate": false
},
"Deadline": "2020-12-22T04:11:56.4458522Z",
"IsKey": false,
"IsNotify": false,
"ActiveTaskCount": 15,
"ClosedTaskCount": 5,
"CanEdit": false,
"CanDelete": false
}
]
}
text/xml
<result>
<status>0</status>
<response>
<ProjectOwner>
<Id>123</Id>
<Title>Sample project</Title>
<Status>0</Status>
<IsPrivate>False</IsPrivate>
</ProjectOwner>
<Deadline>2020-12-22T04:11:56.4458522Z</Deadline>
<IsKey>False</IsKey>
<IsNotify>False</IsNotify>
<ActiveTaskCount>15</ActiveTaskCount>
<ClosedTaskCount>5</ClosedTaskCount>
<CanEdit>False</CanEdit>
<CanDelete>False</CanDelete>
</response>
</result>