Skip to main content
PUT
/
v1
/
alert_fields
/
{id}
Update an alert field
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": "c2881c5a-55d5-4276-bb92-52cf3f1078d7",
    "type": "alert_fields",
    "attributes": {
      "slug": "alert-field-1",
      "name": "Updated Custom Field",
      "kind": "custom",
      "created_at": "2026-01-23T22:53:32.761-08:00",
      "updated_at": "2026-01-23T22:53:34.039-08:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
required

Resource UUID

Body

application/vnd.api+json
data
object
required

Response

alert field updated

data
object
required