π¦ ClawHub
Skylv Webhook Tester
by @sky-lv
Tests and debugs webhooks. Inspects requests and validates responses. Triggers: test webhook, webhook debug, http webhook.
TERMINAL
clawhub install skylv-webhook-testerπ About This Skill
name: skylv-webhook-tester slug: skylv-webhook-tester version: 1.0.0 description: "Tests and debugs webhooks. Inspects requests and validates responses. Triggers: test webhook, webhook debug, http webhook." author: SKY-lv license: MIT tags: [automation, tools] keywords: [automation, tools] triggers: webhook-tester
Webhook Tester
Overview
Helps test, debug, and validate webhook integrations.When to Use
Send Test Payload
$headers = @{ "Content-Type" = "application/json" } $body = @{ event = "test" } | ConvertTo-Json Invoke-RestMethod -Uri "https://example.com/webhook" -Method POST -Headers $headers -Body $body