Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Resource UUID
Body
application/vnd.api+json
Response
alert field updated
Update a specific alert field by id
curl --request PUT \
  --url https://api.rootly.com/v1/alert_fields/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "alert_fields",
    "attributes": {
      "name": "<string>"
    }
  }
}'{
  "data": {
    "id": "c01dd38b-9cb8-4e44-be77-1f66c8a70844",
    "type": "alert_fields",
    "attributes": {
      "slug": "alert-field-1",
      "name": "Updated Custom Field",
      "kind": "custom",
      "created_at": "2025-11-03T21:30:29.470-08:00",
      "updated_at": "2025-11-03T21:30:32.015-08:00"
    }
  }
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Show child attributes
alert field updated
Show child attributes
Was this page helpful?
curl --request PUT \
  --url https://api.rootly.com/v1/alert_fields/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "alert_fields",
    "attributes": {
      "name": "<string>"
    }
  }
}'{
  "data": {
    "id": "c01dd38b-9cb8-4e44-be77-1f66c8a70844",
    "type": "alert_fields",
    "attributes": {
      "slug": "alert-field-1",
      "name": "Updated Custom Field",
      "kind": "custom",
      "created_at": "2025-11-03T21:30:29.470-08:00",
      "updated_at": "2025-11-03T21:30:32.015-08:00"
    }
  }
}