GET api/2.0/crm/history/category
Returns a list of all the history categories available on the portal.
This method doesn't have any parameters.
GET api/2.0/crm/history/category
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
List of all the history categories
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>