delete_workflow_activity
Remove a specific activity from a ServiceNow workflow by specifying its activity ID or sys_id using this tool. Ideal for managing and updating workflows efficiently.
Instructions
Delete an activity from a workflow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"DeleteWorkflowActivityParams": {
"description": "Parameters for deleting a workflow activity.",
"properties": {
"activity_id": {
"description": "Activity ID or sys_id",
"title": "Activity Id",
"type": "string"
}
},
"required": [
"activity_id"
],
"title": "DeleteWorkflowActivityParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/DeleteWorkflowActivityParams"
}
},
"required": [
"params"
],
"title": "delete_workflow_activityArguments",
"type": "object"
}