How to send when each node error to callback

I’ve got issue when i execute node and it return error. i want every node when error send to callback. i create a webhook as input. and every node step if any error it will sent error callback.
I’ve tried to using on error in node setting to continue (using error output) but it always success when it false. so I can use error flow in each node

Hello @fajar7xx,

You can’t automatically send error callbacks for every node in a centralized way. Instead, use Continue On Fail + error-check logic inside the main workflow, or wrap risky logic in sub-workflows and handle errors there. Either approach lets you send clean success or failure responses in your webhook-triggered flow.

  1. Continue on Fail + IF node in main workflow
    Set each node’s “Continue on error” option enabled. Then add an IF node afterward that checks for errors (e.g. presence of $json[“error”]). Depending on that, you can conditionally route to a Respond to Webhook node returning a custom error or success response

  2. Use sub-workflows to simplify error handling
    Wrap chunks of your logic inside sub-workflows and call them via Execute Workflow nodes with Continue On error enabled. Then in the main workflow, check if the sub-workflow produced an error or not. This centralizes error logic and avoids duplicating responses for each node

Let me know if it suits for you.


→ if you think this message was useful and answer your questions please mark as solution.
This encourages users to continue providing timely responses and will help other users in the community.

Halo bang, lu bisa pake error trigger buat handle errornya. Tapi lu butuh workflow baru buat itu bang

aku sudah buat error triggger tapi ada kondisi yang dia harus callback data tertentu ke sistem utama. jadi error trigger belum sesuai

Lu pake stop and error node bukan?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.