Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/vnd.api+json
Response
communications stage created
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": "48fd9e5c-fa6f-4d4e-a0c6-1c1d97bf705d",
"type": "communications_stages",
"attributes": {
"name": "Investigation Started",
"slug": "investigation-started",
"description": "Stage when investigation begins",
"position": 11,
"created_at": "2025-11-27T00:06:47.613-08:00",
"updated_at": "2025-11-27T00:06:47.613-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
communications stage created
Show child attributes
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": "48fd9e5c-fa6f-4d4e-a0c6-1c1d97bf705d",
"type": "communications_stages",
"attributes": {
"name": "Investigation Started",
"slug": "investigation-started",
"description": "Stage when investigation begins",
"position": 11,
"created_at": "2025-11-27T00:06:47.613-08:00",
"updated_at": "2025-11-27T00:06:47.613-08:00"
}
}
}