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": "d55e5a74-be8e-42b9-8d66-4f904fe23f84",
"type": "form_field_placement_conditions",
"attributes": {
"form_field_placement_id": "8301f50f-6662-4183-abff-c027857504e4",
"conditioned": "placement",
"position": 1,
"form_field_id": "fa4a4daf-e147-4874-850a-87b7bdb4f334",
"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": "d55e5a74-be8e-42b9-8d66-4f904fe23f84",
"type": "form_field_placement_conditions",
"attributes": {
"form_field_placement_id": "8301f50f-6662-4183-abff-c027857504e4",
"conditioned": "placement",
"position": 1,
"form_field_id": "fa4a4daf-e147-4874-850a-87b7bdb4f334",
"comparison": "equal",
"values": [
"test"
]
}
}
}