How to read and show input payload submitted to webhook1 on Error trigger workflow

Would like to read input payload submitted to wobhook in workflow 1 when Error Trigger workflow start

i.e I am submitting request to workflow 1 which perform business logic and encounter error and then send error to Trigger flow.

During error flow I would like to read entire payload or key part of input request in error flow and then send error and payload to slack

Information on your n8n setup

  • 0.179.0:
  • Database you’re using (default: SQLite):
  • Running n8n with the execution process [own(default), main]:
  • Running n8n via [Docker, npm, n8n.cloud, desktop app]:

Hi @jay.singh, the error trigger will only capture information about the error itself, not the other parts of the failing workflow.

If you’d like to access the full execution data in your workflow you’d need to handle errors right in the workflow itself rather than through the error trigger. You can do this for example by enabling the Continue On Fail setting on your main nodes:

image

Then add an IF node afterwards to check if an error occurred (and further nodes for error handling as needed).