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": "5f9d2944-c188-4bf0-980f-39ba3412db58",
"type": "form_fields",
"attributes": {
"team_id": 290,
"slug": "test-update-custom-field",
"kind": "custom",
"input_kind": "text",
"value_kind": "inherit",
"value_kind_catalog_id": null,
"name": "Test update custom field",
"description": "Quia iusto maiores reiciendis.",
"shown": [
"web_new_incident_form",
"web_update_incident_form"
],
"required": [],
"default_values": [],
"show_on_incident_details": false,
"enabled": true,
"updated_at": "2026-02-13T18:06:28.049-08:00",
"created_at": "2026-02-13T18:06:24.904-08:00"
},
"relationships": {
"options": {
"data": [
{
"id": "fe9c7ddd-fa55-4bcf-90d2-44a50a4c2ada",
"type": "form_field_options"
},
{
"id": "23fb6ecb-941f-48f7-bb38-1e839759b5fd",
"type": "form_field_options"
}
]
},
"positions": {
"data": [
{
"id": "5b3cbc6c-702b-4d19-8e48-faff61cc8fae",
"type": "form_field_positions"
},
{
"id": "e3ad232c-7333-4ef2-a822-cb43af99f591",
"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": "5f9d2944-c188-4bf0-980f-39ba3412db58",
"type": "form_fields",
"attributes": {
"team_id": 290,
"slug": "test-update-custom-field",
"kind": "custom",
"input_kind": "text",
"value_kind": "inherit",
"value_kind_catalog_id": null,
"name": "Test update custom field",
"description": "Quia iusto maiores reiciendis.",
"shown": [
"web_new_incident_form",
"web_update_incident_form"
],
"required": [],
"default_values": [],
"show_on_incident_details": false,
"enabled": true,
"updated_at": "2026-02-13T18:06:28.049-08:00",
"created_at": "2026-02-13T18:06:24.904-08:00"
},
"relationships": {
"options": {
"data": [
{
"id": "fe9c7ddd-fa55-4bcf-90d2-44a50a4c2ada",
"type": "form_field_options"
},
{
"id": "23fb6ecb-941f-48f7-bb38-1e839759b5fd",
"type": "form_field_options"
}
]
},
"positions": {
"data": [
{
"id": "5b3cbc6c-702b-4d19-8e48-faff61cc8fae",
"type": "form_field_positions"
},
{
"id": "e3ad232c-7333-4ef2-a822-cb43af99f591",
"type": "form_field_positions"
}
]
}
}
}
}