v1
latestOpenAPI 3.1.02026-08-063776831.4 MBMonitoringWorkflow
Unassign multiple monitoring workflows
Removes assignments from multiple monitoring workflows. Workflows can be specified by IDs or fetched using filter criteria.
patch/monitoring-workflows/unassign
Headers
tenant-idstring required
Tenant ID
Request body
Example request
{
"workflowIds": [
"44c8fa75-15a1-4790-a0dd-139058d1f86d",
"55d9fb86-26b2-5801-b1ee-240169e2f97e"
],
"filter": "{\"data.workflowStatus\":{\"eq\":\"PENDING\"}}"
}Response
Bulk unassignment operation completed. Check successful and failed arrays for individual results.
Example response
{
"successful": [
{
"workflowId": "44c8fa75-15a1-4790-a0dd-139058d1f86d"
}
],
"failed": [
{
"workflowId": "44c8fa75-15a1-4790-a0dd-139058d1f86d"
}
]
}