PUT api/2.0/crm/contact/status/{id}/color
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 the new color
application/json
{
"status": 0,
"response": {
"relativeItemsCount": 1,
"title": "Cold",
"description": "",
"sortOrder": 2,
"id": 30
}
}
text/xml
<result>
<status>0</status>
<response>
<relativeItemsCount>1</relativeItemsCount>
<title>Cold</title>
<description></description>
<sortOrder>2</sortOrder>
<id>30</id>
</response>
</result>