Replay an event
Forwards the captured event to the specified destination URL and returns the HTTP response your server sent back, including the status code, latency, and response body.Path parameters
The unique ID of the event to replay. You can find this in the
id field of any event returned by the Events API.Request body
The full URL to forward the event to. Webhooktrap sends the original request — preserving method, headers, and body — to this address and records the response. Must be a valid, fully-qualified URL including scheme, for example
http://localhost:3000/webhooks/stripe or https://staging.example.com/webhooks.Authentication
Authentication is required. Pass your Bearer token in theAuthorization header.
Request
Response
The HTTP status code returned by your destination server. A value of
200 indicates your handler accepted the event successfully. Any other value — such as 500 or 404 — means your server returned an error and is worth investigating.Round-trip latency in milliseconds measured from when Webhooktrap dispatched the replay request to when it received the full response. Use this to spot unexpectedly slow handler paths.
The raw response body returned by your destination server, as a string. If your handler returns JSON, it will appear here as a JSON-encoded string. Inspect this to confirm your handler processed the event as expected.
The destination URL must be reachable from Webhooktrap’s servers. If you want to replay to a local development server, expose it using a tunneling tool such as ngrok or Cloudflare Tunnel and pass the public tunnel URL as the
destination.