Sign in

Update workflow

documented

Update an existing workflow (e.g., rename, change active state, modify settings). ([docs.n8n.io](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.n8n/?utm_source=openai))

PATCH /workflows/{workflow_id}Workflowsno implementation yet0 runs
No 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}}/rest/workflows/{{$workflow_id}}" \
  -X PATCH \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"active": {{$active}}, "settings": {{$settings}}, "staticData": {{$staticData}}, "tags": {{$tags}}}'
Update workflow · n8n · OpenIntegrations