From e837c3946b6fc8be1daff113cb6b22d9dfc6637f Mon Sep 17 00:00:00 2001 From: Nikhil Kuriakose Date: Mon, 3 Nov 2025 21:43:56 +0530 Subject: [PATCH] fix(ado-4352): add missing docs on archive-unarchive hooks (#3831) Co-authored-by: Kartik Balasubramanian <22399046+HumanistSerif@users.noreply.github.com> --- docs/embed/configuration.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/embed/configuration.md b/docs/embed/configuration.md index 7d33b58d3..889acfa19 100644 --- a/docs/embed/configuration.md +++ b/docs/embed/configuration.md @@ -117,6 +117,8 @@ It's possible to define external hooks that n8n executes whenever a specific ope | `workflow.postExecute` | `[run: IRun, workflowData: IWorkflowBase]` | Called after a workflow gets executed. | | `workflow.preExecute` | `[workflow: Workflow: mode: WorkflowExecuteMode]` | Called before a workflow gets executed. Allows you to count or limit the number of workflow executions. | | `workflow.update` | `[workflowData: IWorkflowBase]` | Called before an existing workflow gets saved. | +| `workflow.afterArchive` | `[workflowId: string]` | Called after you archive a workflow. | +| `workflow.afterUnarchive` | `[workflowId: string]` | Called after you restore a workflow from the archive. | ### Registering hooks