PUT api/2.0/crm/contact/status/reorder This function requires authentication

Description

Updates the order of the contact statuses with a list specified in the request.

Parameters
Name Description Type Example
titles
sent in body
List of contact status titles Collection of strings
collection
some text
Example
PUT api/2.0/crm/contact/status/reorder
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "titles": [
    "some text"
  ]
}
Returns

Contact statuses in the new order

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>