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": "7fb015c7-55a8-4856-b8f2-7b5a433de847",
"type": "form_field_options",
"attributes": {
"form_field_id": "7b029576-f55d-4eb3-905a-ebe9d7a38d51",
"value": "Ut ea consequuntur reprehenderit.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-07-05T07:41:50.959-07:00",
"created_at": "2025-07-05T07:41:48.927-07:00"
},
"relationships": {
"form_field": {
"data": {
"id": "7b029576-f55d-4eb3-905a-ebe9d7a38d51",
"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": "7fb015c7-55a8-4856-b8f2-7b5a433de847",
"type": "form_field_options",
"attributes": {
"form_field_id": "7b029576-f55d-4eb3-905a-ebe9d7a38d51",
"value": "Ut ea consequuntur reprehenderit.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-07-05T07:41:50.959-07:00",
"created_at": "2025-07-05T07:41:48.927-07:00"
},
"relationships": {
"form_field": {
"data": {
"id": "7b029576-f55d-4eb3-905a-ebe9d7a38d51",
"type": "form_fields"
}
}
}
}
}