Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/src/howto/hooks/webhooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading