POST api/2.0/crm/task/category
Creates a new task category with the parameters (title, description, etc.) specified in the request.
Name |
Description |
Type |
Example |
title
sent in body
|
Task category title
|
string
|
some text
|
description
sent in body
|
Task category description
|
string
|
some text
|
imageName
sent in body
|
Image name of task category
|
string
|
some text
|
sortOrder
sent in body
|
Task category order
|
number
|
1234
|
POST api/2.0/crm/task/category
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"title": "some text",
"description": "some text",
"imageName": "some text",
"sortOrder": 1234
}
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>