Skip to content

Commit 9f2f7e9

Browse files
committed
Add docs for afterCreate backend hook
1 parent cf07055 commit 9f2f7e9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

docs/embed/configuration.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ It's possible to define external hooks that n8n executes whenever a specific ope
110110
| `oauth1.authenticate` | `[oAuthOptions: clientOAuth1.Options, oauthRequestData: {oauth_callback: string}]` | Called before an OAuth1 authentication. Use to overwrite an OAuth callback URL. |
111111
| `oauth2.callback` | `[oAuth2Parameters: {clientId: string, clientSecret: string \| undefined, accessTokenUri: string, authorizationUri: string, redirectUri: string, scopes: string[]}]` | Called in an OAuth2 callback. Use to overwrite an OAuth callback URL. |
112112
| `workflow.activate` | `[workflowData: IWorkflowDb]` | Called before a workflow gets activated. Use to restrict the number of active workflows. |
113+
| `workflow.afterCreate` | `[workflowId: string]` | Called after a workflow gets created. |
113114
| `workflow.afterDelete` | `[workflowId: string]` | Called after a workflow gets deleted. |
114115
| `workflow.afterUpdate` | `[workflowData: IWorkflowBase]` | Called after an existing workflow gets saved. |
115116
| `workflow.create` | `[workflowData: IWorkflowBase]` | Called before a workflow gets created. Use to restrict the number of saved workflows. |

0 commit comments

Comments
 (0)