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": "a7eda3aa-4c03-4219-b19a-1451272499c9",
"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": "Omnis quis accusantium doloremque.",
"shown": [
"web_new_incident_form",
"web_update_incident_form"
],
"required": [],
"default_values": [],
"show_on_incident_details": false,
"enabled": true,
"updated_at": "2026-01-28T07:39:26.356-08:00",
"created_at": "2026-01-28T07:39:21.893-08:00"
},
"relationships": {
"options": {
"data": [
{
"id": "f3842817-f333-4099-a165-a51daa70700a",
"type": "form_field_options"
},
{
"id": "1f3347b3-7dc5-47dc-8d34-0eb8c15f5108",
"type": "form_field_options"
}
]
},
"positions": {
"data": [
{
"id": "f0bdd59f-4c07-4a89-8ff0-7d4365b1b5af",
"type": "form_field_positions"
},
{
"id": "17a58f9d-3e09-435f-a0fc-5e605a90a698",
"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": "a7eda3aa-4c03-4219-b19a-1451272499c9",
"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": "Omnis quis accusantium doloremque.",
"shown": [
"web_new_incident_form",
"web_update_incident_form"
],
"required": [],
"default_values": [],
"show_on_incident_details": false,
"enabled": true,
"updated_at": "2026-01-28T07:39:26.356-08:00",
"created_at": "2026-01-28T07:39:21.893-08:00"
},
"relationships": {
"options": {
"data": [
{
"id": "f3842817-f333-4099-a165-a51daa70700a",
"type": "form_field_options"
},
{
"id": "1f3347b3-7dc5-47dc-8d34-0eb8c15f5108",
"type": "form_field_options"
}
]
},
"positions": {
"data": [
{
"id": "f0bdd59f-4c07-4a89-8ff0-7d4365b1b5af",
"type": "form_field_positions"
},
{
"id": "17a58f9d-3e09-435f-a0fc-5e605a90a698",
"type": "form_field_positions"
}
]
}
}
}
}