PUT api/2.0/crm/contact/status/{id}
Updates the selected contact status with the parameters (title, description, etc.) specified in the request.
Name |
Description |
Type |
Example |
id
sent in url
|
Contact status ID
|
number
|
1234
|
title
sent in body
|
New contact status title
|
string
|
some text
|
description
sent in body
|
New contact status description
|
string
|
some text
|
color
sent in body
|
New contact status color
|
string
|
some text
|
sortOrder
sent in body
|
New contact status sort order
|
number
|
1234
|
PUT api/2.0/crm/contact/status/1234
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"title": "some text",
"description": "some text",
"color": "some text",
"sortOrder": 1234
}
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>