Hello Team,
Webhook https://learn.app.n8n.cloud/webhook/course/n8n102/finalize requires error_handling_enabled to be set additionally, which is not mentioned in the course. With ‘true’ I get a ‘success’ response back
Without it:
Hello Team,
Webhook https://learn.app.n8n.cloud/webhook/course/n8n102/finalize requires error_handling_enabled to be set additionally, which is not mentioned in the course. With ‘true’ I get a ‘success’ response back
Without it:
Good find - error_handling_enabled: true is an undocumented required parameter for that finalize webhook. The course content hasn’t been updated to mention it yet.
For anyone else hitting this: if you get a non-success response from https://learn.app.n8n.cloud/webhook/course/n8n102/finalize, add error_handling_enabled: true to your request body. The webhook validates that your workflow has error handling configured, and the flag signals that you’ve set it up.
Useful to know: this same pattern (undocumented validation flags in course webhooks) can also appear in the n8n 103 exercises. If you get an unexpected failure on a finalize step, check whether there are additional boolean flags the validator expects by looking at what fields it returns in the error response - it usually tells you which assertion failed.