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