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": "93099f7c-72fb-4c06-bf25-2f851846b602",
    "type": "form_fields",
    "attributes": {
      "team_id": 125,
      "slug": "voluptatem-explicabo-soluta-voluptatem",
      "kind": "custom",
      "input_kind": "text",
      "value_kind": "inherit",
      "value_kind_catalog_id": null,
      "name": "Voluptatem explicabo soluta voluptatem.",
      "description": "Expedita asperiores magnam atque.",
      "shown": [
        "web_new_incident_form",
        "web_update_incident_form",
        "slack_new_incident_form",
        "slack_update_incident_form"
      ],
      "required": [],
      "default_values": [],
      "show_on_incident_details": true,
      "enabled": true,
      "updated_at": "2025-08-08T21:49:51.769-07:00",
      "created_at": "2025-08-08T21:49:51.769-07:00"
    },
    "relationships": {
      "options": {
        "data": [
          {
            "id": "a901dc1b-6d9c-43ef-8f77-3b73f5f21361",
            "type": "form_field_options"
          },
          {
            "id": "57597799-70c9-48d3-b512-b4ef8fb4261a",
            "type": "form_field_options"
          }
        ]
      },
      "positions": {
        "data": [
          {
            "id": "765aa2ca-728a-4fee-91ab-0d9a3499a1aa",
            "type": "form_field_positions"
          },
          {
            "id": "1a367770-cabb-4f91-a780-e4f6c0ab7a60",
            "type": "form_field_positions"
          },
          {
            "id": "f4f059a1-00fe-4e97-a113-058dfa569a01",
            "type": "form_field_positions"
          },
          {
            "id": "5a73fcb7-30be-4e32-a334-cdb3d83e55e8",
            "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
string
required

Query Parameters

include
enum<string>

comma separated if needed. eg: options,positions

Available options:
options,
positions

Response

200
application/vnd.api+json

form_field found

The response is of type object.