Replay missed webhook events
propline_replay_webhook_eventsRe-read a webhook subscription's events in order from a cursor — answers 'my endpoint was down, what did I miss?'. Every delivery carries an X-PropLine-Sequence header, a counter monotonic WITHIN one subscription; pass the highest one the user processed as since_seq. Do NOT use the delivery id as the cursor: that id is global across all subscriptions, so gaps in it are other customers' traffic and mean nothing. Events come back OLDEST FIRST (the opposite of propline_get_webhook_deliveries, which is a newest-first debugging log). Page by passing next_seq back as since_seq while has_more is true. ALWAYS check truncated: true means events after the cursor already aged out of retention (2 days, max 5,000 deliveries per subscription) and are unrecoverable — tell the user to resync from the REST endpoints rather than reporting them caught up. latest_seq is not subject to retention, so latest_seq - next_seq is an honest 'how far behind' even when the rows are gone. Sequence numbers always increase and never repeat but are NOT guaranteed to be dense — a skipped number is normal and is not evidence of loss.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Events per page, 1-500. Default 100. | |
| since_seq | No | Read events after this sequence. Default 0 = from the oldest retained event (which on an established subscription will correctly report truncated: true). | |
| webhook_id | Yes | Webhook id (from propline_list_webhooks). |