update_workflow
Modify existing n8n workflows by updating workflow name, nodes, connections, activation status, or tags through the n8n API.
Instructions
Update an existing n8n workflow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| active | No | ||
| connections | No | ||
| id | Yes | ||
| ifMatch | No | Optional If-Match header value for optimistic concurrency control | |
| name | No | ||
| nodes | No | ||
| tags | No |
Input Schema (JSON Schema)
{
"properties": {
"active": {
"type": "boolean"
},
"connections": {
"type": "object"
},
"id": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"ifMatch": {
"description": "Optional If-Match header value for optimistic concurrency control",
"type": "string"
},
"name": {
"type": "string"
},
"nodes": {
"items": {
"type": "object"
},
"type": "array"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"id"
],
"type": "object"
}