PUT api/2.0/crm/contact/type/{id}
Updates the selected contact type with the parameters (title, description, etc.) specified in the request.
Name |
Description |
Type |
Example |
id
sent in url
|
Contact type ID
|
number
|
1234
|
title
sent in body
|
New contact type title
|
string
|
some text
|
sortOrder
sent in body
|
New contact type order
|
number
|
1234
|
PUT api/2.0/crm/contact/type/1234
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"title": "some text",
"sortOrder": 1234
}
application/json
{
"status": 0,
"response": {
"relativeItemsCount": 1,
"title": "Client",
"description": "",
"sortOrder": 2,
"id": 30
}
}
text/xml
<result>
<status>0</status>
<response>
<relativeItemsCount>1</relativeItemsCount>
<title>Client</title>
<description></description>
<sortOrder>2</sortOrder>
<id>30</id>
</response>
</result>