Paste your error. Find the failing node. Fix it.
Paste any n8n or Zapier error message. Debugalo identifies the failing node, explains the root cause, and suggests a fix.
How it works — paste what you have
Error message
The exact error you're seeing — required
Workflow JSON(optional)
Exported n8n / Zapier workflow for deeper analysis
Payload / Output(optional)
Input or output from the failed node
Debugalo will identify:
Paste the exact n8n/Zapier error, node message, or describe what broke.
Analysis Result
Failed Step
Set Customer Email — step 2 of 3
What Happened
The expression `{{ $json.customer.email }}` returned undefined. The Webhook node wraps POST body data under `$json.body`, so the path the Set node is checking does not exist at that level.
Primary Cause
`$json.customer` is undefined because the incoming data lives at `$json.body.customer`. The Set node is one path segment too shallow.
How to Fix
- Change the expression from `{{ $json.customer.email }}` to `{{ $json.body.customer.email }}`.
- Alternatively, enable "Raw body" in the Webhook node to skip the wrapper and access `$json.customer.email` directly.