Updates a communications stage
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": "a622d457-844a-4330-abeb-6f0047ebc2ee",
"type": "communications_stages",
"attributes": {
"name": "Updated Stage Name",
"slug": "knmc6",
"description": "Updated description",
"position": 1,
"created_at": "2025-07-29T13:38:59.177-07:00",
"updated_at": "2025-07-29T13:39:01.377-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Communications Stage ID
communications stage updated
The response is of type object
.
Was this page helpful?
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": "a622d457-844a-4330-abeb-6f0047ebc2ee",
"type": "communications_stages",
"attributes": {
"name": "Updated Stage Name",
"slug": "knmc6",
"description": "Updated description",
"position": 1,
"created_at": "2025-07-29T13:38:59.177-07:00",
"updated_at": "2025-07-29T13:39:01.377-07:00"
}
}
}