PUT api/2.0/project/milestone/{id}/status This function requires authentication

Description

Updates a status of a milestone with the ID specified in the request.

Parameters
Name Description Type Example
id
sent in url
Milestone ID number 1234
status
sent in body
New milestone status ("Open" or "Closed") Open, Closed Open
Example
             Sending data in application/json:
            
             {
                 status:"Open"
             }
             
Returns

Updated milestone

Example Response

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>