Describe the problem/error/question
After ~30 partial API update operations via the n8n MCP tool, my workflow can no longer be opened in the n8n UI editor. When navigating to the workflow URL, the following error appears and the editor redirects to a blank new workflow screen:
”Could not find workflow / Could not find property option”
The root cause: a Switch node (if-gate) had fallbackOutput: “none” placed at the wrong level — at the top level of parameters instead of inside options.
What is the error message?
Could not find workflow / Could not find property option
The UI immediately redirects to a blank new workflow screen. Occurs consistently in normal browser, incognito, and direct URL access.
Root Cause
Switch node (node ID: if-gate) was configured with fallbackOutput: “none” at the wrong parameter level via API:
Incorrect (what was set):
parameters.fallbackOutput = “none” ← wrong level
Correct (what it should be):
parameters.options.fallbackOutput = “none” ← correct level
Current State
- API GET works: returns full workflow data (47 nodes, all connections intact)
-
- API PUT works: successfully updated
-
- Webhook endpoint is live
-
- Browser hard refresh — no effect
-
- Incognito window with fresh login — same error
-
- Is this a known issue where the UI cannot parse a Switch node when
fallbackOutputis placed at the top level ofparametersinstead of insideoptions? -
- n8n version: Latest (n8n Cloud)
-
- Running via: n8n Cloud (wontaeryu.app.n8n.cloud)
-
- Workflow ID: 0FvD8fdCNthEg15l
-
- Workflow Name: echo-webhook (Schema v1)
- Is this a known issue where the UI cannot parse a Switch node when