PATCH
/
v1
/
communications
/
types
/
{id}
curl --request PATCH \
  --url https://api.rootly.com/v1/communications/types/{id} \
  --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": "ea93a4b3-4f50-438d-a3bb-b6c55ee6d2b5",
    "type": "communications_types",
    "attributes": {
      "name": "Updated Type Name",
      "slug": "v5qwm",
      "description": "Updated description",
      "color": "#00FF00",
      "position": 1,
      "created_at": "2025-06-18T16:02:22.478-07:00",
      "updated_at": "2025-06-18T16:02:25.204-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.

Path Parameters

id
string
required

Communications Type ID

Body

application/vnd.api+json

Response

200
application/vnd.api+json

communications type updated

The response is of type object.