DELETE
/
v1
/
form_field_options
/
{id}
Delete FormField Options
curl --request DELETE \
  --url https://api.rootly.com/v1/form_field_options/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "f6e9bf3c-7837-4c80-b223-634bc86ec862",
    "type": "form_field_options",
    "attributes": {
      "form_field_id": "46fa199f-6d5a-4223-8150-39e33fd2c7ed",
      "value": "Iste quae ut tempore.",
      "color": "#FBE4A0",
      "default": false,
      "position": 1,
      "updated_at": "2025-08-28T04:33:55.499-07:00",
      "created_at": "2025-08-28T04:33:54.411-07:00"
    },
    "relationships": {
      "form_field": {
        "data": {
          "id": "46fa199f-6d5a-4223-8150-39e33fd2c7ed",
          "type": "form_fields"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200
application/vnd.api+json

form_field_option deleted

The response is of type object.