Delete a specific form_set_condition by id
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"
]
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
form_set_condition deleted
The response is of type object
.
Was this page helpful?
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"
]
}
}
}