DELETE
/
v1
/
form_set_conditions
/
{id}
Delete a Form Set Condition
curl --request DELETE \
  --url https://api.rootly.com/v1/form_set_conditions/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "a8f80073-28a6-42a8-861f-de8d473144f7",
    "type": "form_set_conditions",
    "attributes": {
      "form_set_id": "06e8e940-cac8-43aa-b102-fb5d27611726",
      "form_field_id": "119c0d01-4934-4637-a943-cdf69467c074",
      "comparison": "equal",
      "values": [
        "test"
      ]
    }
  }
}

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_set_condition deleted

The response is of type object.