mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
16 lines
327 B
Markdown
16 lines
327 B
Markdown
# Start Workflows via CLI
|
|
|
|
Workflows can not just be started by triggers, webhooks or manually via the
|
|
Editor it is also possible to start them directly via the CLI.
|
|
|
|
Execute a saved workflow by its ID:
|
|
|
|
```bash
|
|
n8n execute --id <ID>
|
|
```
|
|
|
|
Execute a workflow from a workflow file:
|
|
```bash
|
|
n8n execute --file <WORKFLOW_FILE>
|
|
```
|