What arrives on the wire
Because the timestamp is fresh and the signature is regenerated per attempt, the 5-minute replay window in your verification code applies normally. Verify against the timestamp you receive, exactly as you do for a first delivery or a retry — no special-casing.
There is no test marker. A replay is indistinguishable from the original delivery by content — unlike the Eagle Eye test webhook, which adds
data.is_test: true. That is the point: your handler runs the same code path it runs in production. It also means downstream automation will act on a replay as if it were real. Replay against a test consumer if that matters.Which events can be replayed
Replay is offered per-event, based on the event’s delivery status:
A replay cannot itself be replayed — replay the original event again instead.
These are the status names used by the console and by
GET /v1/orders/{id}/events. The Eagle Eye watch event log uses a narrower three-value set where delivery_failed and delivery_skipped both read as failed.Single attempt, real status
A replay makes exactly one delivery attempt. There is no retry ladder — the 5-attempt schedule does not apply. The console waits for your endpoint and reports what actually happened:
The 10-second timeout is the same one production deliveries use.
Environment is strict
A replay is delivered to the endpoint registered for the environment you are viewing:- The console’s sandbox view replays to your sandbox endpoint.
- The console’s production view replays to your production endpoint.
Rate limit
5 replays per event per minute. Exceeding it returns429 with a retry hint. The limit is per event, so replaying five different events in the same minute is fine.
Replays are invisible to your API reads
A replay is recorded on LMN’s side as its own delivery record, but it is filtered out of every partner-facing read:GET /v1/orders/{id}/eventsreturns only the original business events — never replays.- Pagination, cursors, and counts are unaffected.
event_id you received still resolves to exactly one entry there. The original event’s own record is also never modified by a replay: its delivery_status, attempts, response_code, and delivered timestamp stay exactly as they were, even if the replay fails.