Update a specific form_field by id
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": "fe078521-60bb-4f03-bb22-6c9135459ce0",
"type": "form_fields",
"attributes": {
"team_id": 221,
"slug": "test-update-custom-field",
"kind": "custom",
"input_kind": "text",
"value_kind": "inherit",
"value_kind_catalog_id": null,
"name": "Test update custom field",
"description": "Vitae deleniti doloribus ratione.",
"shown": [
"web_new_incident_form",
"web_update_incident_form"
],
"required": [],
"default_values": [],
"show_on_incident_details": false,
"enabled": true,
"updated_at": "2026-01-31T09:15:21.587-08:00",
"created_at": "2026-01-31T09:15:17.933-08:00"
},
"relationships": {
"options": {
"data": [
{
"id": "70082248-f112-43fb-add7-6396b9e6640a",
"type": "form_field_options"
},
{
"id": "807de877-6508-48ec-a561-780a4e6ba0c4",
"type": "form_field_options"
}
]
},
"positions": {
"data": [
{
"id": "f24b7a3f-6642-4198-9cfb-cfbc80f2ccb2",
"type": "form_field_positions"
},
{
"id": "d4327fbe-7d43-43d6-b1ef-87d4ef7ded53",
"type": "form_field_positions"
}
]
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Show child attributes
form_field updated
Show child attributes
Was this page helpful?
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": "fe078521-60bb-4f03-bb22-6c9135459ce0",
"type": "form_fields",
"attributes": {
"team_id": 221,
"slug": "test-update-custom-field",
"kind": "custom",
"input_kind": "text",
"value_kind": "inherit",
"value_kind_catalog_id": null,
"name": "Test update custom field",
"description": "Vitae deleniti doloribus ratione.",
"shown": [
"web_new_incident_form",
"web_update_incident_form"
],
"required": [],
"default_values": [],
"show_on_incident_details": false,
"enabled": true,
"updated_at": "2026-01-31T09:15:21.587-08:00",
"created_at": "2026-01-31T09:15:17.933-08:00"
},
"relationships": {
"options": {
"data": [
{
"id": "70082248-f112-43fb-add7-6396b9e6640a",
"type": "form_field_options"
},
{
"id": "807de877-6508-48ec-a561-780a4e6ba0c4",
"type": "form_field_options"
}
]
},
"positions": {
"data": [
{
"id": "f24b7a3f-6642-4198-9cfb-cfbc80f2ccb2",
"type": "form_field_positions"
},
{
"id": "d4327fbe-7d43-43d6-b1ef-87d4ef7ded53",
"type": "form_field_positions"
}
]
}
}
}
}