create_workflow
Build and store new workflows by specifying a workflow name and project directory, enabling efficient process automation with n8n.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
workflow_name | Yes | The name for the new workflow | |
workspace_dir | Yes | Absolute path to the project root directory where workflow_data will be stored |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"workflow_name": {
"description": "The name for the new workflow",
"type": "string"
},
"workspace_dir": {
"description": "Absolute path to the project root directory where workflow_data will be stored",
"type": "string"
}
},
"required": [
"workflow_name",
"workspace_dir"
],
"type": "object"
}