Creates a new communications stage from provided data
curl --request POST \
--url https://api.rootly.com/v1/communications/stages \
--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": "bb24d243-3f63-4be3-8867-283b029d5b6e",
"type": "communications_stages",
"attributes": {
"name": "Investigation Started",
"slug": "investigation-started",
"description": "Stage when investigation begins",
"position": 11,
"created_at": "2025-07-29T05:35:50.530-07:00",
"updated_at": "2025-07-29T05:35:50.530-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
communications stage created
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://api.rootly.com/v1/communications/stages \
--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": "bb24d243-3f63-4be3-8867-283b029d5b6e",
"type": "communications_stages",
"attributes": {
"name": "Investigation Started",
"slug": "investigation-started",
"description": "Stage when investigation begins",
"position": 11,
"created_at": "2025-07-29T05:35:50.530-07:00",
"updated_at": "2025-07-29T05:35:50.530-07:00"
}
}
}