PUT api/2.0/crm/history/category/{id}/icon This function requires authentication

Description

Updates an icon of a history category with the ID specified in the request.

Parameters
Name Description Type Example
id
sent in url
History category ID number 1234
imageName
sent in body
New image name of the history category string some text
Example
PUT api/2.0/crm/history/category/1234/icon
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "imageName": "some text"
}
Returns

History category with the updated icon

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>