Skip to main content
POST
/
v1
/
communications
/
types
Creates a communications type
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": "57993df0-c2f1-47ce-9349-e1555f5611d7",
    "type": "communications_types",
    "attributes": {
      "name": "Incident Notifications",
      "slug": "incident-notifications",
      "description": "Type for incident-related communications",
      "color": "#FF5733",
      "position": 11,
      "created_at": "2025-11-06T13:20:56.337-08:00",
      "updated_at": "2025-11-06T13:20:56.337-08: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
data
object
required

Response

communications type created

data
object
required