create_workflow
Create a new n8n workflow by defining nodes, connections, and configuration to automate business processes and data flows.
Instructions
Create a new n8n workflow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
active | No | ||
connections | Yes | ||
name | Yes | ||
nodes | Yes | ||
tags | No |
Input Schema (JSON Schema)
{
"properties": {
"active": {
"default": false,
"type": "boolean"
},
"connections": {
"type": "object"
},
"name": {
"type": "string"
},
"nodes": {
"items": {
"type": "object"
},
"type": "array"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name",
"nodes",
"connections"
],
"type": "object"
}