POST
/
v1
/
communications
/
stages
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": "f05f7e01-c00d-419b-9725-390b4710d360",
    "type": "communications_stages",
    "attributes": {
      "name": "Investigation Started",
      "slug": "investigation-started",
      "description": "Stage when investigation begins",
      "position": 11,
      "created_at": "2025-06-18T17:29:25.209-07:00",
      "updated_at": "2025-06-18T17:29:25.209-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/vnd.api+json

Response

201
application/vnd.api+json

communications stage created

The response is of type object.