tasks

Name Resource Description
Close a task PUT api/2.0/crm/task/{taskid}/close Closes a task with the ID specified in the request.
Create a task POST api/2.0/crm/task Creates a task with the parameters (title, description, due date, etc.) specified in the request.
Create a 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 a task DELETE api/2.0/crm/task/{taskid} Deletes a task with the ID specified in the request.
Delete a task category DELETE api/2.0/crm/task/category/{categoryid} Deletes a task category with the ID specified in the request.
Get a task category GET api/2.0/crm/task/category/{categoryid} Returns a task category with the ID specified in the request.
Get task by ID GET api/2.0/crm/task/{taskid} Returns the detailed information about a task with the ID specified in the request.
Get task categories GET api/2.0/crm/task/category Returns a list of all the task categories available on the portal.
Get tasks GET api/2.0/crm/task/filter Returns a list of tasks matching the parameters specified in the request.
Reopen a task PUT api/2.0/crm/task/{taskid}/reopen Reopens a task with the ID specified in the request.
Update a 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 a 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 a task category icon PUT api/2.0/crm/task/category/{id}/icon Updates an icon of the task category with the ID specified in the request.
Update the order of task categories PUT api/2.0/crm/task/category/reorder Updates the order of the task categories with a list specified in the request.