PUT api/2.0/crm/opportunity/stage/reorder
Updates the available order of opportunity stages with a list specified in the request.
Name |
Description |
Type |
Example |
ids
sent in body
|
List of opportunity stage IDs
|
Collection of numbers
collection
|
1234
|
PUT api/2.0/crm/opportunity/stage/reorder
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"ids": [
1234
]
}
Opportunity stages in the new order
application/json
{
"status": 0,
"response": [
{
"RelativeItemsCount": 1,
"id": 1234,
"Title": "Title",
"Description": "Description",
"Color": "#a7fc00",
"SortOrder": 1,
"SuccessProbability": 20,
"StageType": 0
}
]
}
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>
<SuccessProbability>20</SuccessProbability>
<StageType>0</StageType>
</response>
</result>