Create workflow
documentedCreate a new workflow and receive its definition and ID in the response. ([docs.n8n.io](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.n8n/?utm_source=openai))
POST /workflowsWorkflowsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{$n8n_domain}}/api/v1/workflows" \
-X POST \\
-H "Accept: application/json" \\
-H "Content-Type: application/json" \\
-H "X-N8N-API-KEY: {{N8N_API_KEY}}" \\
-d '{"name": "{{$name}}", "nodes": {{$nodes}}, "connections": {{$connections}}, "settings": {{$settings}}, "active": {{$active}} }'