Skip to main content

Events

An event is a single incoming HTTP request that an endpoint received and stored. Events are the canonical record of what a provider actually sent — Webhookr keeps the full payload and headers so you can inspect or replay them later.

Events list

Events (/dashboard/events) shows recent events for the selected project. Pick an endpoint to filter to its events. Each row summarizes the event — method, time received, and delivery outcome.

Events list with received time, endpoint, source IP, headers, size, and replay

Event detail

Open an event (/dashboard/events/<endpointId>/<eventId>) to inspect everything Webhookr captured:

FieldDescription
PayloadThe full request body, as received.
HeadersAll request headers.
MethodThe HTTP method used (POST, GET, …).
Source IPThe IP address the request came from.
User agentThe sending client's User-Agent.
Content-TypeThe request's content type.
Received atWhen the event was recorded.
Payload size / header countSize of the body and number of headers.
Last replayed atWhen the event was last replayed, if ever.

Event detail with the Details and Deliveries tabs

Deliveries for an event

Each event lists its deliveries — one per enabled destination at the time the event was processed. For every delivery you can see:

  • StatusPENDING, SUCCESS, or FAILED.
  • Response status — the HTTP status the destination returned.
  • Response body — what the destination responded with.
  • Duration — how long the attempt took, in milliseconds.

Open a delivery (/dashboard/events/<endpointId>/<eventId>/deliveries/<deliveryId>) for the full request and response.

See Deliveries for the model and Delivery statuses for what each status means.

Replaying

From an event you can replay it — re-sending it to its destinations — or replay a single delivery. See Replay.