GET
/
v1
/
alert_fields
/
{id}
Retrieves an alert field
curl --request GET \
  --url https://api.rootly.com/v1/alert_fields/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "bb0486a3-9174-4506-9186-d79992847fbf",
    "type": "alert_fields",
    "attributes": {
      "slug": "alert-field-1",
      "name": "Alert Field 1",
      "kind": "custom",
      "created_at": "2025-09-24T06:57:56.193-07:00",
      "updated_at": "2025-09-24T06:57:56.193-07: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

Response

alert_field found by slug

data
object
required