Persistent "Workflow could not be started!" Error on Specific Webhook (Others Work)

Hello N8N Community,

I’m facing a persistent issue with a specific workflow on N8N Cloud, and my debugging attempts haven’t been successful. I would greatly appreciate any help or insight.

Workflow Goal (Chat DocGrowX V3):

  1. Triggered by a Webhook (GET method, receiving name and email as query parameters, e.g., /webhook/docgrowx-v3?name=X&email=Y).
  2. Use an Edit Fields node to prepare input.
  3. Use a Simple Memory node (with Session ID based on email).
  4. Call the OpenAI Assistants API using the OpenAI node (Message an assistant), passing the name, using the Thread ID from memory.
  5. Use a second Edit Fields node (Edit Fields1) to prepare data for logging.
  6. Save the interaction to Google Sheets (Append Row).
  7. Respond to the initial call using a Respond to Webhook node.

The Problem:

When trying to access the Production URL of this workflow’s Webhook (e.g., https://[my-subdomain].app.n8n.cloud/webhook/docgrowx-v3?name=Test&[email protected]), I consistently get the error: {"code":0,"message":"Workflow Webhook Error: Workflow could not be started!"}

The Strange Part:

  • A brand new, simple test workflow, on the same N8N Cloud instance, works perfectly. I created a flow with Webhook (Path: /simple-test, Method: GET, Respond: Immediately) → Set (setting a simple field). Calling its Production URL runs successfully and returns {"message":"Workflow was started"}. This indicates the N8N instance is functional for basic webhooks.

Debugging Steps Already Taken (without success on the Chat DocGrowX workflow):

  1. Rebuild: Tried recreating the workflow from scratch (V2, V3).
  2. Extreme Simplification: Reduced the Chat DocGrowX V3 workflow to the absolute minimum: Webhook -> Edit Fields, with all other nodes deactivated. The “could not be started!” error persisted.
  3. Webhook Respond Configuration:
  • Tried Respond: Immediately (with subsequent nodes deactivated). The “could not be started!” error continued.
  • Tried Respond: Using 'Respond to Webhook' Node'. This correctly generated the “No ‘Respond to Webhook’ node found…” error when the response node was deactivated, but still resulted in the “could not be started!” error when the response node was active (suggesting the startup issue occurred earlier).
  1. Simple Memory Config: Found and fixed an error in the Session ID configuration of the Simple Memory node, but this did not resolve the startup issue.
  2. Activation/Saving: Ensured multiple times that the workflow was saved and active (green “Active” toggle), including deactivating/reactivating after each change.
  3. Intermediate Node Config: Reviewed configurations of Edit Fields and OpenAI nodes to ensure no obvious errors that might prevent N8N’s initial validation (although the failure occurs before they execute).
  4. Invalid JSON Error: During debugging, I also encountered a persistent invalid JSON error ({"{ \"mensagem\": $json...) that seemed to originate from Edit Fields1 or Respond to Webhook, but this error only appeared when the workflow managed to start, which is no longer happening. The primary blocker now is the failure to start.

Current Conclusion:

There seems to be a specific issue with this workflow (Chat DocGrowX V3) or perhaps the path /docgrowx-v3 that prevents N8N from initiating it correctly, even in its simplest configuration, despite other webhooks working on the same instance. I suspect some internal workflow corruption or a specific hidden issue.

Has anyone encountered such a persistent and specific “Workflow could not be started!” error? Any suggestions on where else to look or what else to try?

Thanks! (Optional: I can provide the workflow JSON if helpful.)

Hi, did you copy and paste along the way?

Yes posting workflow is always a good idea. Thanks

Reg,
J.

I’m experiencing the same issue with the self-hosted version 1.95.3 running on Ubuntu 24.04 (Docker deployment).

Container logs

2025-05-28T08:09:21.672307910Z No Respond to Webhook node found in the workflow
2025-05-28T08:09:21.672389467Z No Respond to Webhook node found in the workflow
2025-05-28T08:09:21.673155802Z Error in handling webhook request POST /webhook/AGENT: Workflow Webhook Error: Workflow could not be started!

No logs appear in the workflow itself. If I reopen the workflow in the editor and simply save it, the webhook starts working again for a short time before it stops once more.

Workflow structure

Webhook Trigger → Agent node (with multiple tools) → Respond to Webhook