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": "1d35823b-55fe-47be-9146-d5f1a244b439",
"type": "form_fields",
"attributes": {
"team_id": 124,
"slug": "eligendi-qui-et-voluptatem",
"kind": "custom",
"input_kind": "text",
"value_kind": "inherit",
"value_kind_catalog_id": null,
"name": "Eligendi qui et voluptatem.",
"description": "Laudantium ea pariatur reprehenderit.",
"shown": [],
"required": [],
"default_values": [],
"show_on_incident_details": true,
"enabled": true,
"updated_at": "2025-07-23T00:30:19.811-07:00",
"created_at": "2025-07-23T00:30:15.537-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": "1d35823b-55fe-47be-9146-d5f1a244b439",
"type": "form_fields",
"attributes": {
"team_id": 124,
"slug": "eligendi-qui-et-voluptatem",
"kind": "custom",
"input_kind": "text",
"value_kind": "inherit",
"value_kind_catalog_id": null,
"name": "Eligendi qui et voluptatem.",
"description": "Laudantium ea pariatur reprehenderit.",
"shown": [],
"required": [],
"default_values": [],
"show_on_incident_details": true,
"enabled": true,
"updated_at": "2025-07-23T00:30:19.811-07:00",
"created_at": "2025-07-23T00:30:15.537-07:00"
},
"relationships": {
"options": {
"data": []
},
"positions": {
"data": []
}
}
}
}