POST
/
v1
/
communications
/
types
curl --request POST \
  --url https://api.rootly.com/v1/communications/types \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "communications_types",
    "attributes": {
      "name": "<string>",
      "description": "<string>",
      "color": "<string>",
      "position": 123
    }
  }
}'
{
  "data": {
    "id": "d3505988-f569-4dd3-931e-5d35d71760ec",
    "type": "communications_types",
    "attributes": {
      "name": "Incident Notifications",
      "slug": "incident-notifications",
      "description": "Type for incident-related communications",
      "color": "#FF5733",
      "position": 11,
      "created_at": "2025-06-18T16:02:24.366-07:00",
      "updated_at": "2025-06-18T16:02:24.366-07:00",
      "communication_groups": [],
      "communication_templates": []
    }
  }
}

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 type created

The response is of type object.