Skip to main content
PATCH
/
crm
/
pipeline-stages
/
{stage_id}
Update Pipeline Stage
curl --request PATCH \
  --url https://api.getoutbox.ai/crm/pipeline-stages/{stage_id}/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "stage_order": 123,
  "is_closed_won": true,
  "is_closed_lost": true
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

stage_id
string<uuid>
required

Body

name
string
Minimum string length: 1
stage_order
integer
is_closed_won
boolean
is_closed_lost
boolean

Response

Stage updated.

{key}
any