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": "e8b84951-ebd4-46a4-b9fa-98c111c20ee5",
"type": "form_fields",
"attributes": {
"team_id": 128,
"slug": "nulla-alias-labore-sint",
"kind": "custom",
"input_kind": "text",
"value_kind": "inherit",
"value_kind_catalog_id": null,
"name": "Nulla alias labore sint.",
"description": "Sunt veniam quia autem.",
"shown": [],
"required": [],
"default_values": [],
"show_on_incident_details": true,
"enabled": true,
"updated_at": "2025-09-01T09:42:42.237-07:00",
"created_at": "2025-09-01T09:42:39.141-07:00"
},
"relationships": {
"options": {
"data": []
},
"positions": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
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": "e8b84951-ebd4-46a4-b9fa-98c111c20ee5",
"type": "form_fields",
"attributes": {
"team_id": 128,
"slug": "nulla-alias-labore-sint",
"kind": "custom",
"input_kind": "text",
"value_kind": "inherit",
"value_kind_catalog_id": null,
"name": "Nulla alias labore sint.",
"description": "Sunt veniam quia autem.",
"shown": [],
"required": [],
"default_values": [],
"show_on_incident_details": true,
"enabled": true,
"updated_at": "2025-09-01T09:42:42.237-07:00",
"created_at": "2025-09-01T09:42:39.141-07:00"
},
"relationships": {
"options": {
"data": []
},
"positions": {
"data": []
}
}
}
}