PUT api/2.0/crm/history/category/{id}/icon
Updates an icon of a history category with the ID specified in the request.
Name |
Description |
Type |
Example |
id
sent in url
|
History category ID
|
number
|
1234
|
imageName
sent in body
|
New icon name of the history category
|
string
|
some text
|
PUT api/2.0/crm/history/category/1234/icon
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"imageName": "some text"
}
History category with the updated icon
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>