Request Replay and Export
The app already captures enough data to reconstruct a request: method, path, query, headers, body text/base64, content type, and IP in lib/webhooks/inbound-capture.ts line 70 and lib/webhooks/repository.ts line 53. But the debugging loop stops at inspection.
Add:
- Replay selected request to a target URL.
- Copy as
curl, HAR, and maybe Fetch.
- Optional saved forwarding target per inbox.
- Replay attempt results:
- Status
- Latency
- Response headers/body
- Error
Why: modern tools consistently center this. RequestBin lists capture, replay, and forwarding as core docs features. Hookdump markets replay and forwarding directly. Webhook.site’s current docs also describe replay as part of Custom Actions workflows.
Request Replay and Export
The app already captures enough data to reconstruct a request: method, path, query, headers, body text/base64, content type, and IP in
lib/webhooks/inbound-capture.tsline 70 andlib/webhooks/repository.tsline 53. But the debugging loop stops at inspection.Add:
curl, HAR, and maybe Fetch.Why: modern tools consistently center this. RequestBin lists capture, replay, and forwarding as core docs features. Hookdump markets replay and forwarding directly. Webhook.site’s current docs also describe replay as part of Custom Actions workflows.