PUT api/2.0/crm/opportunity/stage/reorder

Для этой функции требуется аутентификация. 

Описание
Обновляет доступный порядок этапов возможных сделок в соответствии со списком, указанным в запросе.
Параметры
НазваниеОписаниеТипПример
ids

sent in body
Список идентификаторов этапов возможностиCollection of numbers

collection
1234
Пример
PUT api/2.0/crm/opportunity/stage/reorder
Host: yourportal.r7-office.ru
Content-Type: application/json
Accept: application/json

{
  "ids": [
    1234
  ]
}
Возвращает

Этапы возможной сделки в новом порядке

Пример ответа

application/json

{
  "status": 0,
  "response": [
    {
      "relativeItemsCount": 1,
      "successProbability": 20,
      "stageType": 0,
      "title": "Discussion",
      "description": "The potential buyer showed his\/her interest and sees how your offering meets his\/her goal",
      "color": "#B9AFD3",
      "sortOrder": 2,
      "id": 30
    }
  ]
}

text/xml

<result>
  <status>0</status>
  <response>
    <relativeItemsCount>1</relativeItemsCount>
    <successProbability>20</successProbability>
    <stageType>0</stageType>
    <title>Discussion</title>
    <description>The potential buyer showed his/her interest and sees how your offering meets his/her goal</description>
    <color>#B9AFD3</color>
    <sortOrder>2</sortOrder>
    <id>30</id>
  </response>
</result>