update
Modify an existing n8n workflow by specifying the file path and providing the updated JSON object to implement changes efficiently.
Instructions
Update an existing n8n workflow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the workflow file relative to workflows root | |
workflow | Yes | The updated workflow JSON object |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the workflow file relative to workflows root",
"type": "string"
},
"workflow": {
"description": "The updated workflow JSON object",
"type": "object"
}
},
"required": [
"path",
"workflow"
],
"type": "object"
}