Skip to main content
GET
/
v1
/
form_fields
/
{id}
Retrieves a Form Field
curl --request GET \
  --url https://api.rootly.com/v1/form_fields/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "8c399e8c-26d7-493c-a782-f43e83954930",
    "type": "form_fields",
    "attributes": {
      "team_id": 176,
      "slug": "temporibus-vitae-possimus-optio",
      "kind": "custom",
      "input_kind": "text",
      "value_kind": "inherit",
      "value_kind_catalog_id": null,
      "name": "Temporibus vitae possimus optio.",
      "description": "Velit voluptas sapiente est.",
      "shown": [
        "web_new_incident_form",
        "web_update_incident_form"
      ],
      "required": [],
      "default_values": [],
      "show_on_incident_details": true,
      "enabled": true,
      "updated_at": "2025-11-21T12:09:35.479-08:00",
      "created_at": "2025-11-21T12:09:35.479-08:00"
    },
    "relationships": {
      "options": {
        "data": [
          {
            "id": "c2788dd6-32f2-4410-a4fe-dc9c92f7e547",
            "type": "form_field_options"
          },
          {
            "id": "a1268228-c97b-41fc-8868-fec53133da70",
            "type": "form_field_options"
          }
        ]
      },
      "positions": {
        "data": [
          {
            "id": "1d2a977b-a37a-4fbc-a30c-5e658780afa9",
            "type": "form_field_positions"
          },
          {
            "id": "d9a571fb-7639-4705-894f-70e915b81a0f",
            "type": "form_field_positions"
          }
        ]
      }
    }
  }
}

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

Query Parameters

include
enum<string>

comma separated if needed. eg: options,positions

Available options:
options,
positions

Response

form_field found by slug

data
object
required