deactivate_workflow
Stop an active n8n workflow from running by providing its ID. This action prevents the workflow from executing automated tasks and processes.
Instructions
Deactivate an n8n workflow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"required": [
"id"
],
"type": "object"
}