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