DELETE api/2.0/crm/task/category/{categoryid}
Deletes a task category with the ID specified in the request.
Name |
Description |
Type |
Example |
categoryid
sent in url
|
Task category ID
|
number
|
1234
|
newcategoryid
sent in body
|
Task category ID to replace the deleted category in the tasks with the current task category
|
number
|
1234
|
DELETE api/2.0/crm/task/category/1234
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"newcategoryid": 1234
}
application/json
{
"status": 0,
"response": {
"relativeItemsCount": 1,
"imagePath": "path to image",
"title": "Appointment",
"description": "",
"sortOrder": 2,
"id": 30
}
}
text/xml
<result>
<status>0</status>
<response>
<relativeItemsCount>1</relativeItemsCount>
<imagePath>path to image</imagePath>
<title>Appointment</title>
<description></description>
<sortOrder>2</sortOrder>
<id>30</id>
</response>
</result>