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": "48b8282b-a1ad-4480-9f33-cc716bdcdf9c",
"type": "form_fields",
"attributes": {
"team_id": 231,
"slug": "test-update-custom-field",
"kind": "custom",
"input_kind": "text",
"value_kind": "inherit",
"value_kind_catalog_id": null,
"name": "Test update custom field",
"description": "Aut dolores et nihil.",
"shown": [
"web_new_incident_form",
"web_update_incident_form"
],
"required": [],
"default_values": [],
"show_on_incident_details": false,
"enabled": true,
"updated_at": "2026-02-11T10:37:22.113-08:00",
"created_at": "2026-02-11T10:37:18.263-08:00"
},
"relationships": {
"options": {
"data": [
{
"id": "6843c3e5-681b-4cc5-b48b-80250b3054ad",
"type": "form_field_options"
},
{
"id": "f9cc54ec-266b-457c-b769-2bb9762d7ecf",
"type": "form_field_options"
}
]
},
"positions": {
"data": [
{
"id": "f8ee8148-a2f9-40e5-94cb-e3f1b76f980d",
"type": "form_field_positions"
},
{
"id": "69c6b31c-8035-4220-b6a0-7f809a2fa8e3",
"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": "48b8282b-a1ad-4480-9f33-cc716bdcdf9c",
"type": "form_fields",
"attributes": {
"team_id": 231,
"slug": "test-update-custom-field",
"kind": "custom",
"input_kind": "text",
"value_kind": "inherit",
"value_kind_catalog_id": null,
"name": "Test update custom field",
"description": "Aut dolores et nihil.",
"shown": [
"web_new_incident_form",
"web_update_incident_form"
],
"required": [],
"default_values": [],
"show_on_incident_details": false,
"enabled": true,
"updated_at": "2026-02-11T10:37:22.113-08:00",
"created_at": "2026-02-11T10:37:18.263-08:00"
},
"relationships": {
"options": {
"data": [
{
"id": "6843c3e5-681b-4cc5-b48b-80250b3054ad",
"type": "form_field_options"
},
{
"id": "f9cc54ec-266b-457c-b769-2bb9762d7ecf",
"type": "form_field_options"
}
]
},
"positions": {
"data": [
{
"id": "f8ee8148-a2f9-40e5-94cb-e3f1b76f980d",
"type": "form_field_positions"
},
{
"id": "69c6b31c-8035-4220-b6a0-7f809a2fa8e3",
"type": "form_field_positions"
}
]
}
}
}
}