Get task template containers
|
GET api/2.0/crm/{entityType}/tasktemplatecontainer
|
Returns the complete list of all the task template containers available on the portal
|
Get task template container by I d
|
GET api/2.0/crm/tasktemplatecontainer/{containerid}
|
Returns the detailed information on the task template container with the ID specified in the request
|
Get task template by I d
|
GET api/2.0/crm/tasktemplatecontainer/tasktemplate/{id}
|
Return the task template with the ID specified in the request
|
Get task templates
|
GET api/2.0/crm/tasktemplatecontainer/{containerid}/tasktemplate
|
Returns the list of all tasks in the container with the ID specified in the request
|
Create task template container
|
POST api/2.0/crm/{entityType}/tasktemplatecontainer
|
Creates a new task template container with the type and title specified in the request
|
Create task template
|
POST api/2.0/crm/tasktemplatecontainer/{containerid}/tasktemplate
|
Creates a new task template with the parameters specified in the request in the container with the selected ID
|
Update task template container
|
PUT api/2.0/crm/tasktemplatecontainer/{containerid}
|
Updates the task template container with the ID specified in the request
|
Update task template
|
PUT api/2.0/crm/tasktemplatecontainer/{containerid}/tasktemplate
|
Updates the selected task template with the parameters specified in the request in the container with the selected ID
|
Delete task template container
|
DELETE api/2.0/crm/tasktemplatecontainer/{containerid}
|
Deletes the task template container with the ID specified in the request
|
Delete task template
|
DELETE api/2.0/crm/tasktemplatecontainer/tasktemplate/{id}
|
Deletes the task template with the ID specified in the request
|