deactivate_workflow
Deactivate a workflow in ServiceNow by providing the Workflow ID or sys_id, ensuring streamlined management of workflows through the ServiceNow MCP Server.
Instructions
Deactivate a workflow in ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
workflow_id | Yes | Workflow ID or sys_id |
Input Schema (JSON Schema)
{
"description": "Parameters for deactivating a workflow.",
"properties": {
"workflow_id": {
"description": "Workflow ID or sys_id",
"title": "Workflow Id",
"type": "string"
}
},
"required": [
"workflow_id"
],
"title": "DeactivateWorkflowParams",
"type": "object"
}