Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
form_field_option deleted
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": "e0ddf247-080e-498a-8815-a75bb4c98825",
"type": "form_field_options",
"attributes": {
"form_field_id": "70e13833-a638-409e-803b-4540b0646ece",
"value": "Reprehenderit consectetur non aut.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-10-23T12:29:17.677-07:00",
"created_at": "2025-10-23T12:29:16.413-07:00"
},
"relationships": {
"form_field": {
"data": {
"id": "70e13833-a638-409e-803b-4540b0646ece",
"type": "form_fields"
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
form_field_option deleted
Show child attributes
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/form_field_options/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "e0ddf247-080e-498a-8815-a75bb4c98825",
"type": "form_field_options",
"attributes": {
"form_field_id": "70e13833-a638-409e-803b-4540b0646ece",
"value": "Reprehenderit consectetur non aut.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-10-23T12:29:17.677-07:00",
"created_at": "2025-10-23T12:29:16.413-07:00"
},
"relationships": {
"form_field": {
"data": {
"id": "70e13833-a638-409e-803b-4540b0646ece",
"type": "form_fields"
}
}
}
}
}