generate
Create n8n workflows from templates with real nodes for webhooks, scheduled reports, data sync, error handling, and approval flows.
Instructions
Generate a workflow from template using REAL n8n nodes (no mock/placeholder nodes)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
config | No | Configuration options for the template | |
name | Yes | Workflow name | |
project | No | Optional project name (only for multi-project repos) | |
template | Yes | Template type to use |
Input Schema (JSON Schema)
{
"properties": {
"config": {
"description": "Configuration options for the template",
"type": "object"
},
"name": {
"description": "Workflow name",
"type": "string"
},
"project": {
"description": "Optional project name (only for multi-project repos)",
"type": "string"
},
"template": {
"description": "Template type to use",
"enum": [
"webhook-api",
"scheduled-report",
"data-sync",
"error-handler",
"approval-flow"
],
"type": "string"
}
},
"required": [
"template",
"name"
],
"type": "object"
}