diff --git a/docs/src/howto/hooks/webhooks.md b/docs/src/howto/hooks/webhooks.md index 45fe7e7192f..189853db95e 100644 --- a/docs/src/howto/hooks/webhooks.md +++ b/docs/src/howto/hooks/webhooks.md @@ -7,7 +7,8 @@ description: Webhooks reference A Webhook is a Hook type that sends an HTTP POST request to the configured URL. Any non `2XX` response by the responding endpoint will fail the Hook, cancel the execution of the following Hooks -under the same Action. For `pre-*` hooks, the triggering operation will also be aborted. +under the same Action. For `pre-*` hooks, the triggering operation will also be aborted. Conversely, `post-*` +hooks run asynchronously, and their failure will not affect the operation that triggered them. !!! warning You should not use `pre-*` webhooks for long-running tasks, since they block the performed operation.