You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Printing the Raw Webhook Payload to Standard Output
28
+
29
+
This hook configuration receives incoming webhook requests and prints the raw request body (payload) directly to the server's standard output (visible in the webhook process logs when running with -verbose). It is particularly useful for debugging and verifying webhook deliveries from external services.
30
+
31
+
```json
32
+
[
33
+
{
34
+
"id": "print-payload",
35
+
"execute-command": "/bin/echo",
36
+
"pass-arguments-to-command": [
37
+
{
38
+
"source": "entire-payload",
39
+
}
40
+
]
41
+
}
42
+
]
43
+
```
44
+
27
45
## Incoming Github webhook
28
46
29
47
This example works on 2.8+ versions of Webhook - if you are on a previous series, change `payload-hmac-sha1` to `payload-hash-sha1`.
0 commit comments