PUT api/2.0/project/task/{taskid}/status
Updates a status of a task with the ID specified in the request.
Name |
Description |
Type |
Example |
taskid
sent in url
|
Task ID
|
number
|
1234
|
status
sent in body
|
New task status: Open or Closed
|
Open, Closed
|
|
statusId
sent in body
|
Custom status ID
|
number
|
1234
|
PUT api/2.0/project/task/1234/status
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"status": "open",
"statusId": 1234
}