DELETE api/2.0/crm/contact/type/{contactTypeid}
Deletes a contact type with the ID specified in the request.
Name |
Description |
Type |
Example |
contactTypeid
sent in url
|
Contact type ID
|
number
|
1234
|
DELETE api/2.0/crm/contact/type/1234
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
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>