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": "f26273cd-55d4-43cc-be9c-f7739da73eb7",
    "type": "form_fields",
    "attributes": {
      "team_id": 131,
      "slug": "harum-sequi-ad-esse",
      "kind": "custom",
      "input_kind": "text",
      "value_kind": "inherit",
      "value_kind_catalog_id": null,
      "name": "Harum sequi ad esse.",
      "description": "Quod quis sint aliquid.",
      "shown": [
        "web_new_incident_form",
        "web_update_incident_form"
      ],
      "required": [],
      "default_values": [],
      "show_on_incident_details": true,
      "enabled": true,
      "updated_at": "2025-09-18T20:54:25.152-07:00",
      "created_at": "2025-09-18T20:54:25.152-07:00"
    },
    "relationships": {
      "options": {
        "data": [
          {
            "id": "735f8880-bd9e-4429-8ced-be13a78d8969",
            "type": "form_field_options"
          },
          {
            "id": "eecb7e6f-32d4-4e0b-a752-439328b18286",
            "type": "form_field_options"
          }
        ]
      },
      "positions": {
        "data": [
          {
            "id": "56f41e07-a557-4cc0-a7db-fee0d144498a",
            "type": "form_field_positions"
          },
          {
            "id": "10d68b73-b7d4-43a7-bdb1-5d100e8a490f",
            "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