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": "8367a597-7666-432e-abd0-67728b7e0674",
    "type": "form_field_options",
    "attributes": {
      "form_field_id": "457a1fc9-d199-480d-9dd4-9ce7c74fd957",
      "value": "Dolorum quaerat corrupti et.",
      "color": "#FBE4A0",
      "default": false,
      "position": 1,
      "updated_at": "2025-08-07T20:16:34.626-07:00",
      "created_at": "2025-08-07T20:16:33.508-07:00"
    },
    "relationships": {
      "form_field": {
        "data": {
          "id": "457a1fc9-d199-480d-9dd4-9ce7c74fd957",
          "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.