TRY NEW VERSION

Try now New API BETA

Try out the new view and capabilities of the API documentation

START

PUT api/2.0/crm/contact/status/{id}/color This function requires authentication

Description

Updates a color of the selected contact status with a new color specified in the request.

Parameters
Name Description Type Example
id
sent in url
Contact status ID number 1234
color
sent in body
New contact status color string some text
Example
PUT api/2.0/crm/contact/status/1234/color
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "color": "some text"
}
Returns

Contact status with a new color

Example Response

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>