Skip to main content
PUT
/
v1
/
form_fields
/
{id}
Update a Form Field
curl --request PUT \
  --url https://api.rootly.com/v1/form_fields/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '
{
  "data": {
    "type": "form_fields",
    "attributes": {
      "kind": "custom",
      "input_kind": "text",
      "value_kind": "inherit",
      "value_kind_catalog_id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "shown": [
        "<string>"
      ],
      "required": [
        "<string>"
      ],
      "show_on_incident_details": true,
      "enabled": true,
      "default_values": [
        "<string>"
      ]
    }
  }
}
'
{
  "data": {
    "id": "ae8eb0e9-6847-4b9e-91d4-5d973710b1e8",
    "type": "form_fields",
    "attributes": {
      "team_id": 296,
      "slug": "test-update-custom-field",
      "kind": "custom",
      "input_kind": "text",
      "value_kind": "inherit",
      "value_kind_catalog_id": null,
      "name": "Test update custom field",
      "description": "Corrupti praesentium omnis reprehenderit.",
      "shown": [
        "web_new_incident_form",
        "web_update_incident_form"
      ],
      "required": [],
      "default_values": [],
      "show_on_incident_details": false,
      "enabled": true,
      "updated_at": "2026-02-20T17:56:58.885-08:00",
      "created_at": "2026-02-20T17:56:55.393-08:00"
    },
    "relationships": {
      "options": {
        "data": [
          {
            "id": "8e20cd8e-86b4-4ab3-87e9-82c3bb4f451e",
            "type": "form_field_options"
          },
          {
            "id": "1366cb34-2ccf-482a-88e0-541a481be05e",
            "type": "form_field_options"
          }
        ]
      },
      "positions": {
        "data": [
          {
            "id": "3daf7ffa-c0de-4fb6-bd4c-dc5812a49608",
            "type": "form_field_positions"
          },
          {
            "id": "934f4c2e-0079-4b05-b845-50b9f0141ffc",
            "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

Body

application/vnd.api+json
data
object
required

Response

form_field updated

data
object
required