Add link
|
POST api/2.0/project/task/{parentTaskId}/link
|
Add link between dependenceTaskId and parentTaskId
|
Add task
|
POST api/2.0/project/{projectid}/task
|
Adds the task to the selected project with the parameters (responsible user ID, task description, deadline time, etc) specified in the request
|
Add task
|
POST api/2.0/project/{projectid}/task/{messageid}
|
Adds the task to the selected project
|
Check subscription to task action
|
GET api/2.0/project/task/{taskid}/subscribe
|
Checks subscription to notifications about the actions performed with the task with the ID specified in the request
|
Copy subtask
|
POST api/2.0/project/task/{taskid}/{subtaskid}/copy
|
Copy subtask
|
Copy task
|
POST api/2.0/project/task/{copyFrom}/copy
|
Copy task
|
Create subtask
|
POST api/2.0/project/task/{taskid}
|
Creates the subtask with the selected title and responsible within the parent task specified in the request
|
Delete subtask
|
DELETE api/2.0/project/task/{taskid}/{subtaskid}
|
Deletes the selected subtask from the parent task with the ID specified in the request
|
Delete task
|
DELETE api/2.0/project/task/{taskid}
|
Deletes the task with the ID specified in the request from the project
|
Delete tasks
|
DELETE api/2.0/project/task
|
Deletes the tasks with the IDs specified in the request from the project
|
Get task
|
GET api/2.0/project/task/{taskid}
|
Returns the detailed information about the task with the ID specified in the request
|
Get task by filter
|
GET api/2.0/project/task/filter
|
Returns the list with the detailed information about all the tasks matching the filter parameters specified in the request
|
My tasks
|
GET api/2.0/project/{projectid}/task/@self/{status}
|
Returns the list of all tasks for the current user with the selected status in the project with the ID specified in the request
|
My tasks
|
GET api/2.0/project/task/@self
|
Returns the list with the detailed information about all tasks for the current user
|
My tasks by status
|
GET api/2.0/project/task/@self/{status}
|
Returns the list with the detailed information about the tasks for the current user with the status specified in the request
|
Notify task responsible
|
GET api/2.0/project/task/{taskid}/notify
|
Notify the responsible for the task with the ID specified in the request about the task
|
Remove link
|
DELETE api/2.0/project/task/{taskid}/link
|
Remove link between dependenceTaskId and parentTaskId
|
Subscribe to task action
|
PUT api/2.0/project/task/{taskid}/subscribe
|
Subscribe to notifications about the actions performed with the task with the ID specified in the request
|
Tasks
|
GET api/2.0/project/{projectid}/task
|
Returns the list of all the tasks within the project with the ID specified in the request
|
Tasks with status
|
GET api/2.0/project/{projectid}/task/{status}
|
Returns the list of all tasks with the selected status in the project with the ID specified in the request
|
Update subtask
|
PUT api/2.0/project/task/{taskid}/{subtaskid}
|
Updates the subtask with the selected title and responsible with the subtask ID specified in the request
|
Update subtask status
|
PUT api/2.0/project/task/{taskid}/{subtaskid}/status
|
Updates the selected subtask status in the parent task with the ID specified in the request
|
Update Task
|
PUT api/2.0/project/task/{taskid}
|
Updates the selected task with the parameters (responsible user ID, task description, deadline time, etc) specified in the request
|
Update task milestone
|
PUT api/2.0/project/task/{taskid}/milestone
|
Updates the milestone of the task with the ID specified in the request
|
Update task status
|
PUT api/2.0/project/task/{taskid}/status
|
Updates the status of the task with the ID specified in the request
|
Update tasks milestone
|
PUT api/2.0/project/task/milestone
|
Updates the milestone of the tasks with the IDs specified in the request
|
Update tasks status
|
PUT api/2.0/project/task/status
|
Updates the status of the tasks with the IDs specified in the request
|