Updates a color of the selected contact status with a new color specified in the request.
Name | Description | Type | Example |
id
sent in url
|
Contact status ID | number | 1234 |
color
sent in body
|
New contact status color | string | some text |
PUT api/2.0/crm/contact/status/1234/color Host: yourportal.onlyoffice.com Content-Type: application/json Accept: application/json { "color": "some text" }
Contact status with a new color
application/json
{ "status": 0, "response": { "RelativeItemsCount": 1, "id": 1234, "Title": "Title", "Description": "Description", "Color": "#a7fc00", "SortOrder": 1 } }
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> </response> </result>