Install
openclaw skills install skylv-webhook-debuggerTests and debugs webhooks. Inspects requests and validates responses. Triggers: test webhook, webhook debug, http webhook.
openclaw skills install skylv-webhook-debuggerHelps test, debug, and validate webhook integrations.
$headers = @{ "Content-Type" = "application/json" } $body = @{ event = "test" } | ConvertTo-Json Invoke-RestMethod -Uri "https://example.com/webhook" -Method POST -Headers $headers -Body $body