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": "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"
]
}
}
}
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": "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"
]
}
}
}