Delete a specific form_field_placement_condition by id
curl --request DELETE \
--url https://api.rootly.com/v1/form_field_placement_conditions/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "6da14ce7-db3c-4bb0-81c7-c5d412d3c397",
"type": "form_field_placement_conditions",
"attributes": {
"form_field_placement_id": "d4bcedaa-db27-4519-8f08-85f4e846176f",
"conditioned": "placement",
"position": 1,
"form_field_id": "07489f51-f854-4a8c-877e-148f292c66a2",
"comparison": "equal",
"values": [
"test"
]
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
form_field_placement_condition deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/form_field_placement_conditions/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "6da14ce7-db3c-4bb0-81c7-c5d412d3c397",
"type": "form_field_placement_conditions",
"attributes": {
"form_field_placement_id": "d4bcedaa-db27-4519-8f08-85f4e846176f",
"conditioned": "placement",
"position": 1,
"form_field_id": "07489f51-f854-4a8c-877e-148f292c66a2",
"comparison": "equal",
"values": [
"test"
]
}
}
}