PATCH
/
v1
/
communications
/
stages
/
{id}
curl --request PATCH \
  --url https://api.rootly.com/v1/communications/stages/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "communications_stages",
    "attributes": {
      "name": "<string>",
      "description": "<string>",
      "position": 123
    }
  }
}'
{
  "data": {
    "id": "cd0c9033-958d-43bd-a3b5-addcd234e5e7",
    "type": "communications_stages",
    "attributes": {
      "name": "Updated Stage Name",
      "slug": "qcqni",
      "description": "Updated description",
      "position": 1,
      "created_at": "2025-07-09T09:06:33.903-07:00",
      "updated_at": "2025-07-09T09:06:36.755-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Communications Stage ID

Body

application/vnd.api+json

Response

200
application/vnd.api+json

communications stage updated

The response is of type object.