DELETE api/2.0/crm/task/category/{categoryid} This function requires authentication

Description

Deletes a task category with the ID specified in the request.

Parameters
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
Example
DELETE api/2.0/crm/task/category/1234
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "newcategoryid": 1234
}
Returns

Task category

Example Response

application/json

{
  "status": 0,
  "response": {
    "RelativeItemsCount": 1,
    "id": 1234,
    "Title": "Title",
    "Description": "Description",
    "Color": "#a7fc00",
    "SortOrder": 1,
    "ImagePath": "path to image"
  }
}

text/xml

<result>
  <status>0</status>
  <response>
    <RelativeItemsCount>1</RelativeItemsCount>
    <id>1234</id>
    <Title>Title</Title>
    <Description>Description</Description>
    <Color>#a7fc00</Color>
    <SortOrder>1</SortOrder>
    <ImagePath>path to image</ImagePath>
  </response>
</result>