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": "206afd47-baf3-4b52-96f8-ae5b9022d13b",
    "type": "form_set_conditions",
    "attributes": {
      "form_set_id": "93e2cb0a-8c18-471d-a24e-fdb2caf339a8",
      "form_field_id": "ae2b14a1-7705-4d10-bb4e-11abea922a42",
      "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.