delete_workflow_activity
Remove a specific activity from a ServiceNow workflow by providing its activity ID to manage workflow configurations and automation processes.
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)
{
"properties": {
"activity_id": {
"description": "Activity ID or sys_id",
"title": "Activity Id",
"type": "string"
}
},
"required": [
"activity_id"
],
"type": "object"
}