Delete a specific form_field_option by id
curl --request DELETE \
--url https://api.rootly.com/v1/form_field_options/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "4412e52a-58bf-4e24-97f4-20d5c53be4f4",
"type": "form_field_options",
"attributes": {
"form_field_id": "915192d7-e334-4110-8c1e-36953a9a0250",
"value": "Recusandae qui voluptas sit.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-07-18T16:50:02.202-07:00",
"created_at": "2025-07-18T16:50:00.543-07:00"
},
"relationships": {
"form_field": {
"data": {
"id": "915192d7-e334-4110-8c1e-36953a9a0250",
"type": "form_fields"
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
form_field_option deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/form_field_options/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "4412e52a-58bf-4e24-97f4-20d5c53be4f4",
"type": "form_field_options",
"attributes": {
"form_field_id": "915192d7-e334-4110-8c1e-36953a9a0250",
"value": "Recusandae qui voluptas sit.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-07-18T16:50:02.202-07:00",
"created_at": "2025-07-18T16:50:00.543-07:00"
},
"relationships": {
"form_field": {
"data": {
"id": "915192d7-e334-4110-8c1e-36953a9a0250",
"type": "form_fields"
}
}
}
}
}