create_workflow
Design and set up n8n workflows programmatically by defining nodes and their connections for efficient automation and integration processes.
Instructions
Create and configure n8n workflows programmatically
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connections | No | ||
nodes | Yes |
Input Schema (JSON Schema)
{
"properties": {
"connections": {
"items": {
"properties": {
"source": {
"type": "string"
},
"sourceOutput": {
"default": 0,
"type": "number"
},
"target": {
"type": "string"
},
"targetInput": {
"default": 0,
"type": "number"
}
},
"required": [
"source",
"target"
],
"type": "object"
},
"type": "array"
},
"nodes": {
"items": {
"properties": {
"name": {
"type": "string"
},
"parameters": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"name"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"nodes"
],
"type": "object"
}