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": "c8a2858b-2d24-435c-adfb-82a897e69930",
"type": "form_fields",
"attributes": {
"team_id": 203,
"slug": "test-update-custom-field",
"kind": "custom",
"input_kind": "text",
"value_kind": "inherit",
"value_kind_catalog_id": null,
"name": "Test update custom field",
"description": "Voluptate repellat doloribus nobis.",
"shown": [
"web_new_incident_form",
"web_update_incident_form"
],
"required": [],
"default_values": [],
"show_on_incident_details": false,
"enabled": true,
"updated_at": "2025-12-22T14:53:42.750-08:00",
"created_at": "2025-12-22T14:53:40.351-08:00"
},
"relationships": {
"options": {
"data": [
{
"id": "ebd69d8b-1c1a-498e-834d-42cf910e32c2",
"type": "form_field_options"
},
{
"id": "51e27cf9-9106-4935-94f1-839284eaf271",
"type": "form_field_options"
}
]
},
"positions": {
"data": [
{
"id": "bb6ab1a3-44a6-4764-b302-0ea9af80e18a",
"type": "form_field_positions"
},
{
"id": "ef384d92-4748-4234-ad9e-91e757cf92dd",
"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": "c8a2858b-2d24-435c-adfb-82a897e69930",
"type": "form_fields",
"attributes": {
"team_id": 203,
"slug": "test-update-custom-field",
"kind": "custom",
"input_kind": "text",
"value_kind": "inherit",
"value_kind_catalog_id": null,
"name": "Test update custom field",
"description": "Voluptate repellat doloribus nobis.",
"shown": [
"web_new_incident_form",
"web_update_incident_form"
],
"required": [],
"default_values": [],
"show_on_incident_details": false,
"enabled": true,
"updated_at": "2025-12-22T14:53:42.750-08:00",
"created_at": "2025-12-22T14:53:40.351-08:00"
},
"relationships": {
"options": {
"data": [
{
"id": "ebd69d8b-1c1a-498e-834d-42cf910e32c2",
"type": "form_field_options"
},
{
"id": "51e27cf9-9106-4935-94f1-839284eaf271",
"type": "form_field_options"
}
]
},
"positions": {
"data": [
{
"id": "bb6ab1a3-44a6-4764-b302-0ea9af80e18a",
"type": "form_field_positions"
},
{
"id": "ef384d92-4748-4234-ad9e-91e757cf92dd",
"type": "form_field_positions"
}
]
}
}
}
}