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": "65fcdc30-441e-44d3-9f54-16f5545e9e6f",
"type": "form_fields",
"attributes": {
"team_id": 218,
"slug": "test-update-custom-field",
"kind": "custom",
"input_kind": "text",
"value_kind": "inherit",
"value_kind_catalog_id": null,
"name": "Test update custom field",
"description": "Exercitationem dicta ut voluptatibus.",
"shown": [
"web_new_incident_form",
"web_update_incident_form"
],
"required": [],
"default_values": [],
"show_on_incident_details": false,
"enabled": true,
"updated_at": "2026-01-16T12:39:53.341-08:00",
"created_at": "2026-01-16T12:39:50.298-08:00"
},
"relationships": {
"options": {
"data": [
{
"id": "0abf1575-e066-4634-b2ab-fb7c6c0f88d0",
"type": "form_field_options"
},
{
"id": "3e5b1e56-b4b3-4044-a19c-aedf01febc6f",
"type": "form_field_options"
}
]
},
"positions": {
"data": [
{
"id": "cf407a24-6e48-4209-9d6f-29e3a614a5f3",
"type": "form_field_positions"
},
{
"id": "256c056f-a228-455a-bc03-250e71f71808",
"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": "65fcdc30-441e-44d3-9f54-16f5545e9e6f",
"type": "form_fields",
"attributes": {
"team_id": 218,
"slug": "test-update-custom-field",
"kind": "custom",
"input_kind": "text",
"value_kind": "inherit",
"value_kind_catalog_id": null,
"name": "Test update custom field",
"description": "Exercitationem dicta ut voluptatibus.",
"shown": [
"web_new_incident_form",
"web_update_incident_form"
],
"required": [],
"default_values": [],
"show_on_incident_details": false,
"enabled": true,
"updated_at": "2026-01-16T12:39:53.341-08:00",
"created_at": "2026-01-16T12:39:50.298-08:00"
},
"relationships": {
"options": {
"data": [
{
"id": "0abf1575-e066-4634-b2ab-fb7c6c0f88d0",
"type": "form_field_options"
},
{
"id": "3e5b1e56-b4b3-4044-a19c-aedf01febc6f",
"type": "form_field_options"
}
]
},
"positions": {
"data": [
{
"id": "cf407a24-6e48-4209-9d6f-29e3a614a5f3",
"type": "form_field_positions"
},
{
"id": "256c056f-a228-455a-bc03-250e71f71808",
"type": "form_field_positions"
}
]
}
}
}
}