Delete a specific workflow form field condition by id
curl --request DELETE \
--url https://api.rootly.com/v1/workflow_form_field_conditions/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "ac2e0171-9424-4e80-bf8f-b165ae66b185",
"type": "workflow_form_field_conditions",
"attributes": {
"workflow_id": "6aaf26e1-0775-4910-a8e2-60019993efeb",
"form_field_id": "046ac83b-e19a-4d8d-8b9e-a1310d6aa5db",
"incident_condition": "ANY",
"values": [],
"selected_group_ids": [],
"selected_option_ids": [],
"selected_service_ids": [],
"selected_functionality_ids": [],
"selected_user_ids": [],
"selected_catalog_entity_ids": []
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
workflow_form_field_condition deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/workflow_form_field_conditions/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "ac2e0171-9424-4e80-bf8f-b165ae66b185",
"type": "workflow_form_field_conditions",
"attributes": {
"workflow_id": "6aaf26e1-0775-4910-a8e2-60019993efeb",
"form_field_id": "046ac83b-e19a-4d8d-8b9e-a1310d6aa5db",
"incident_condition": "ANY",
"values": [],
"selected_group_ids": [],
"selected_option_ids": [],
"selected_service_ids": [],
"selected_functionality_ids": [],
"selected_user_ids": [],
"selected_catalog_entity_ids": []
}
}
}