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": "13055f79-8bbe-4e57-aeb8-b64a20db2352",
    "type": "form_field_options",
    "attributes": {
      "form_field_id": "c3d7b288-10b6-4192-ba7c-13d0eab07c6e",
      "value": "Voluptatibus quia possimus rerum.",
      "color": "#FBE4A0",
      "default": false,
      "position": 1,
      "updated_at": "2025-09-12T18:55:04.566-07:00",
      "created_at": "2025-09-12T18:55:03.459-07:00"
    },
    "relationships": {
      "form_field": {
        "data": {
          "id": "c3d7b288-10b6-4192-ba7c-13d0eab07c6e",
          "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

form_field_option deleted

The response is of type object.