Webhook forwarding rules

Forwarding sends each captured event to one or more HTTP targets automatically — useful for fan-out to staging services or teammate tunnels.

Create a rule

  1. Open Rules in the app sidebar.
  2. Pick an endpoint and add a target URL.
  3. Optional filters: header match or JSONPath on the body.
  4. Save — new events enqueue immediately after capture.
# Event hits ReplayHooks…
curl -X POST https://hook.replayhooks.com/x/<your-token> \
  -H 'Content-Type: application/json' \
  -d '{"type":"user.created","user":{"id":"u_1"}}'

# …and is forwarded to your rule targets with retries
◈ forwarding rules
forwarding rules list

Retries

Failed forwards retry with exponential backoff (3 attempts). On Team plan, final failures can alert Slack or Discord.

Plan limits

  • Free: 0 forward rules
  • Pro: 1 forward rule
  • Team / Business: unlimited
Webhook forwarding rules · ReplayHooks