delete_workflow_activity
Remove a workflow activity in ServiceNow by specifying its Activity ID or sys_id to streamline process management and ensure accurate workflow configurations.
Instructions
Delete an activity from a workflow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activity_id | Yes | Activity ID or sys_id |
Input Schema (JSON Schema)
{
"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"
}