Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Resource UUID
Body
application/vnd.api+json
Response
form_field updated
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": "45ea71ec-ab76-4aaf-b2f8-ddc62788fb25",
"type": "form_fields",
"attributes": {
"team_id": 133,
"slug": "test-update-custom-field",
"kind": "custom",
"input_kind": "text",
"value_kind": "inherit",
"value_kind_catalog_id": null,
"name": "Test update custom field",
"description": "Voluptatem dicta quasi explicabo.",
"shown": [
"web_new_incident_form",
"web_update_incident_form"
],
"required": [],
"default_values": [],
"show_on_incident_details": false,
"enabled": true,
"updated_at": "2025-10-08T19:32:29.528-07:00",
"created_at": "2025-10-08T19:32:26.954-07:00"
},
"relationships": {
"options": {
"data": [
{
"id": "f1fabc62-fb81-4701-b36b-d5a5a71beb16",
"type": "form_field_options"
},
{
"id": "ee3ab3a7-13f2-41f2-ba94-8c429fd48e89",
"type": "form_field_options"
}
]
},
"positions": {
"data": [
{
"id": "c523bbb5-3557-49ae-8d3a-a2791513a88b",
"type": "form_field_positions"
},
{
"id": "969452bc-2e3e-42bd-9ac5-6f5fda88a7e5",
"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": "45ea71ec-ab76-4aaf-b2f8-ddc62788fb25",
"type": "form_fields",
"attributes": {
"team_id": 133,
"slug": "test-update-custom-field",
"kind": "custom",
"input_kind": "text",
"value_kind": "inherit",
"value_kind_catalog_id": null,
"name": "Test update custom field",
"description": "Voluptatem dicta quasi explicabo.",
"shown": [
"web_new_incident_form",
"web_update_incident_form"
],
"required": [],
"default_values": [],
"show_on_incident_details": false,
"enabled": true,
"updated_at": "2025-10-08T19:32:29.528-07:00",
"created_at": "2025-10-08T19:32:26.954-07:00"
},
"relationships": {
"options": {
"data": [
{
"id": "f1fabc62-fb81-4701-b36b-d5a5a71beb16",
"type": "form_field_options"
},
{
"id": "ee3ab3a7-13f2-41f2-ba94-8c429fd48e89",
"type": "form_field_options"
}
]
},
"positions": {
"data": [
{
"id": "c523bbb5-3557-49ae-8d3a-a2791513a88b",
"type": "form_field_positions"
},
{
"id": "969452bc-2e3e-42bd-9ac5-6f5fda88a7e5",
"type": "form_field_positions"
}
]
}
}
}
}