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": "83816afc-c4d6-4d77-b06f-ca39d3eb5811",
    "type": "form_set_conditions",
    "attributes": {
      "form_set_id": "02156db3-abc9-42fa-8464-4f843b01346e",
      "form_field_id": "38341bf7-a224-4947-ac39-4519f86f26ac",
      "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.