PUT api/2.0/crm/opportunity/stage/{id}/color This function requires authentication

Description

Updates the selected opportunity stage with a color specified in the request.

Parameters
Name Description Type Example
id
sent in url
Opportunity stage ID number 1234
color
sent in body
New stage color string some text
Example
PUT api/2.0/crm/opportunity/stage/1234/color
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "color": "some text"
}
Returns

Opportunity stage with the updated color

Example Response

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>