PUT
/
v1
/
incident_types
/
{id}
curl --request PUT \
  --url https://api.rootly.com/v1/incident_types/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "incident_types",
    "attributes": {
      "name": "<string>",
      "description": "<string>",
      "color": "<string>",
      "position": 123,
      "notify_emails": [
        "<string>"
      ],
      "slack_channels": [
        {
          "id": "<string>",
          "name": "<string>"
        }
      ],
      "slack_aliases": [
        {
          "id": "<string>",
          "name": "<string>"
        }
      ]
    }
  }
}'
{
  "data": {
    "id": "168385b5-3f90-4d89-af4d-f3429bb3a4ec",
    "type": "incident_types",
    "attributes": {
      "slug": "p1",
      "name": "P1",
      "description": "Medium Priority",
      "color": "#000",
      "position": 2,
      "notify_emails": [],
      "slack_channels": [],
      "slack_aliases": [],
      "created_at": "2025-05-08T00:21:59.194-07:00",
      "updated_at": "2025-05-08T00:22:03.278-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/vnd.api+json

Response

200
application/vnd.api+json
incident_type updated

The response is of type object.