POST api/2.0/crm/contact/status This function requires authentication

Description

Creates a new contact status with the parameters (title, description, etc.) specified in the request.

Parameters
Name Description Type Example
title
sent in body
Contact status title string some text
description
sent in body
Contact status description string some text
color
sent in body
Contact status color string some text
sortOrder
sent in body
Contact status sort order number 1234
Example
POST api/2.0/crm/contact/status
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "title": "some text",
  "description": "some text",
  "color": "some text",
  "sortOrder": 1234
}
Returns

Contact status

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>