Delete a specific form_field by id
curl --request DELETE \
--url https://api.rootly.com/v1/form_fields/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "f2e918cf-d78a-404e-bdb8-63d88ac8b611",
"type": "form_fields",
"attributes": {
"team_id": 125,
"slug": "vero-omnis-nesciunt-numquam",
"kind": "custom",
"input_kind": "text",
"value_kind": "inherit",
"value_kind_catalog_id": null,
"name": "Vero omnis nesciunt numquam.",
"description": "Ducimus quis dolore ex.",
"shown": [],
"required": [],
"default_values": [],
"show_on_incident_details": true,
"enabled": true,
"updated_at": "2025-08-12T06:51:53.159-07:00",
"created_at": "2025-08-12T06:51:48.555-07:00"
},
"relationships": {
"options": {
"data": []
},
"positions": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
form_field deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/form_fields/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "f2e918cf-d78a-404e-bdb8-63d88ac8b611",
"type": "form_fields",
"attributes": {
"team_id": 125,
"slug": "vero-omnis-nesciunt-numquam",
"kind": "custom",
"input_kind": "text",
"value_kind": "inherit",
"value_kind_catalog_id": null,
"name": "Vero omnis nesciunt numquam.",
"description": "Ducimus quis dolore ex.",
"shown": [],
"required": [],
"default_values": [],
"show_on_incident_details": true,
"enabled": true,
"updated_at": "2025-08-12T06:51:53.159-07:00",
"created_at": "2025-08-12T06:51:48.555-07:00"
},
"relationships": {
"options": {
"data": []
},
"positions": {
"data": []
}
}
}
}