JasonA
September 28, 2022, 11:12am
#1
I see I can set up a notification for when a workflow is activated, what about a process to notify when the workflow is complete or if it errors out?
What is the error message (if any)?
Please share the workflow
(Select the nodes and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow respectively)
Share the output returned by the last node
Information on your n8n setup
n8n version:
Database you’re using (default: SQLite):
Running n8n with the execution process [own(default), main]:
Running n8n via [Docker, npm, n8n.cloud, desktop app]:
marcus
September 28, 2022, 12:13pm
#2
Hey Jason,
our Workflow Trigger node currently supports
Active Workflow Updated: Triggers when this workflow is updated
Workflow Activated: Triggers when this workflow is activated
For error handling you can use the Error Trigger node .
We do not have a trigger for succesfull workflow completions but you could use n8n’s public API to GET /executions
to retrieve all executions. To ony get successfull executions you can use /executions?status=success
JasonA
September 29, 2022, 1:28am
#3
Thank You. I’ll give those a try.
2 Likes