Skip to main content
PUT
/
api
/
Configuration
/
Opportunities
/
Stages
/
{stageId}
Update Opportunity Stages
curl --request PUT \
  --url https://api.example.com/api/Configuration/Opportunities/Stages/{stageId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": 123,
  "enabled": true,
  "name": "<string>",
  "stageOrder": 123,
  "includeInKanban": true
}
'

Path Parameters

stageId
integer<int32>
required

Body

application/json
id
integer<int32>
enabled
boolean
name
string | null
stageOrder
integer<int32>
includeInKanban
boolean

Response

200

OK