Updates the selected subtask status of the parent task with the ID specified in the request.
Name | Description | Type | Example |
taskid
sent in url
|
Task ID | number | 1234 |
subtaskid
sent in url
|
Subtask ID | number | 1234 |
status
sent in body
|
New subtask status | NotAccept = 0,Open = 1, Closed = 2,Disable = 3,Unclassified = 4,NotInMilestone = 5 | NotAccept |
PUT api/2.0/project/task/1234/1234/status Host: yourportal.onlyoffice.com Content-Type: application/json Accept: application/json { "status": "NotAccept" }
Updated subtask
application/json
{ "status": 0, "response": { "Id": 10, "Title": "Sample Title", "Description": "Sample description", "Status": 0, "Responsible": { "Id": "00000000-0000-0000-0000-000000000000", "DisplayName": "Mike Zanyatski", "Title": "Manager", "AvatarSmall": "url to small avatar", "ProfileUrl": "\\/Products\\/People\\/Profile.aspx?user=administrator" }, "ResponsibleId": "00000000-0000-0000-0000-000000000000", "UpdatedBy": { "Id": "00000000-0000-0000-0000-000000000000", "DisplayName": "Mike Zanyatski", "Title": "Manager", "AvatarSmall": "url to small avatar", "ProfileUrl": "\\/Products\\/People\\/Profile.aspx?user=administrator" }, "UpdatedById": "00000000-0000-0000-0000-000000000000", "Created": "2020-12-22T04:11:56.5658524Z", "CreatedBy": { "Id": "00000000-0000-0000-0000-000000000000", "DisplayName": "Mike Zanyatski", "Title": "Manager", "AvatarSmall": "url to small avatar", "ProfileUrl": "\\/Products\\/People\\/Profile.aspx?user=administrator" }, "CreatedById": "00000000-0000-0000-0000-000000000000", "Updated": "2020-12-22T04:11:56.5658524Z", "CanEdit": false, "TaskId": 1234 } }
text/xml
<result> <status>0</status> <response> <Id>10</Id> <Title>Sample Title</Title> <Description>Sample description</Description> <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>\/Products\/People\/Profile.aspx?user=administrator</ProfileUrl> </Responsible> <ResponsibleId>00000000-0000-0000-0000-000000000000</ResponsibleId> <UpdatedBy> <Id>00000000-0000-0000-0000-000000000000</Id> <DisplayName>Mike Zanyatski</DisplayName> <Title>Manager</Title> <AvatarSmall>url to small avatar</AvatarSmall> <ProfileUrl>\/Products\/People\/Profile.aspx?user=administrator</ProfileUrl> </UpdatedBy> <UpdatedById>00000000-0000-0000-0000-000000000000</UpdatedById> <Created>2020-12-22T04:11:56.5658524Z</Created> <CreatedBy> <Id>00000000-0000-0000-0000-000000000000</Id> <DisplayName>Mike Zanyatski</DisplayName> <Title>Manager</Title> <AvatarSmall>url to small avatar</AvatarSmall> <ProfileUrl>\/Products\/People\/Profile.aspx?user=administrator</ProfileUrl> </CreatedBy> <CreatedById>00000000-0000-0000-0000-000000000000</CreatedById> <Updated>2020-12-22T04:11:56.5658524Z</Updated> <CanEdit>False</CanEdit> <TaskId>1234</TaskId> </response> </result>