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": "da09e18e-7356-42ad-bf06-717db1f56025",
"type": "alert_fields",
"attributes": {
"slug": "alert-field-1",
"name": "Updated Custom Field",
"kind": "custom",
"created_at": "2025-12-13T18:46:34.695-08:00",
"updated_at": "2025-12-13T18:46:37.244-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
alert field updated
Show child attributes
alert_fields Show child attributes
The ID of the alert field
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": "da09e18e-7356-42ad-bf06-717db1f56025",
"type": "alert_fields",
"attributes": {
"slug": "alert-field-1",
"name": "Updated Custom Field",
"kind": "custom",
"created_at": "2025-12-13T18:46:34.695-08:00",
"updated_at": "2025-12-13T18:46:37.244-08:00"
}
}
}