POST api/2.0/crm/history/category
Creates a new history category with the parameters (title, description, etc.) specified in the request.
Name |
Description |
Type |
Example |
title
sent in body
|
History category title
|
string
|
some text
|
description
sent in body
|
History category description
|
string
|
some text
|
sortOrder
sent in body
|
History category order
|
number
|
1234
|
imageName
sent in body
|
Image name of the history category
|
string
|
some text
|
POST api/2.0/crm/history/category
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"title": "some text",
"description": "some text",
"sortOrder": 1234,
"imageName": "some text"
}
application/json
{
"status": 0,
"response": {
"relativeItemsCount": 1,
"imagePath": "path to image",
"title": "Lunch",
"description": "",
"color": "",
"sortOrder": 10,
"id": 30
}
}
text/xml
<result>
<status>0</status>
<response>
<relativeItemsCount>1</relativeItemsCount>
<imagePath>path to image</imagePath>
<title>Lunch</title>
<description></description>
<color></color>
<sortOrder>10</sortOrder>
<id>30</id>
</response>
</result>