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": "876c3409-2c5b-4ed5-a3e9-221b60c98abc",
"type": "form_field_placement_conditions",
"attributes": {
"form_field_placement_id": "4a80c3a2-dbd1-4bd9-b7c2-e94757cd2bf5",
"conditioned": "placement",
"position": 1,
"form_field_id": "76da65aa-343f-4b03-af6b-4aacc695e431",
"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": "876c3409-2c5b-4ed5-a3e9-221b60c98abc",
"type": "form_field_placement_conditions",
"attributes": {
"form_field_placement_id": "4a80c3a2-dbd1-4bd9-b7c2-e94757cd2bf5",
"conditioned": "placement",
"position": 1,
"form_field_id": "76da65aa-343f-4b03-af6b-4aacc695e431",
"comparison": "equal",
"values": [
"test"
]
}
}
}