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": "c4b68d94-a2e7-4965-a0bc-d4bc3d6d3f5d",
"type": "communications_stages",
"attributes": {
"name": "Updated Stage Name",
"slug": "xe7bx",
"description": "Updated description",
"position": 1,
"created_at": "2026-02-19T02:22:42.424-08:00",
"updated_at": "2026-02-19T02:22:43.780-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Communications Stage ID
Show child attributes
communications stage updated
Show child attributes
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": "c4b68d94-a2e7-4965-a0bc-d4bc3d6d3f5d",
"type": "communications_stages",
"attributes": {
"name": "Updated Stage Name",
"slug": "xe7bx",
"description": "Updated description",
"position": 1,
"created_at": "2026-02-19T02:22:42.424-08:00",
"updated_at": "2026-02-19T02:22:43.780-08:00"
}
}
}