Close task
|
PUT api/2.0/crm/task/{taskid}/close
|
Close the task with the ID specified in the request
|
Create task
|
POST api/2.0/crm/task
|
Creates the task with the parameters (title, description, due date, etc.) specified in the request
|
Create task category
|
POST api/2.0/crm/task/category
|
Creates a new task category with the parameters (title, description, etc.) specified in the request
|
Delete task
|
DELETE api/2.0/crm/task/{taskid}
|
Delete the task with the ID specified in the request
|
Delete task category
|
DELETE api/2.0/crm/task/category/{categoryid}
|
Deletes the task category with the ID specified in the request
|
Get all task categories
|
GET api/2.0/crm/task/category
|
Returns the list of all task categories available on the portal
|
Get task by ID
|
GET api/2.0/crm/task/{taskid}
|
Returns the detailed information about the task with the ID specified in the request
|
Get task category
|
GET api/2.0/crm/task/category/{categoryid}
|
Returns the category of the task with the ID specified in the request
|
Get task list
|
GET api/2.0/crm/task/filter
|
Returns the list of tasks matching the creteria specified in the request
|
Resume task
|
PUT api/2.0/crm/task/{taskid}/reopen
|
Open anew the task with the ID specified in the request
|
Update task
|
PUT api/2.0/crm/task/{taskid}
|
Updates the selected task with the parameters (title, description, due date, etc.) specified in the request
|
Update task categories order
|
PUT api/2.0/crm/task/category/reorder
|
Updates the task categories order with the list specified in the request
|
Update task category
|
PUT api/2.0/crm/task/category/{id}
|
Updates the selected task category with the parameters (title, description, etc.) specified in the request
|
Update task category icon
|
PUT api/2.0/crm/task/category/{id}/icon
|
Updates the icon of the task category with the ID specified in the request
|