Skip to main content

Pending & Events

Inspect and cancel pending (debounced) deliveries, and list and replay the raw delivery events that drive bindings.

Two surfaces sit underneath the delivery items and dead-letter queue: the pending (debounced) deliveries that have not fired yet, and the raw delivery events that bindings consume. Use them to see what is queued to go out, cancel a debounced delivery before it fires, and replay an event through the binding pipeline.

Pending deliveries are those still inside their debounce window. List them with the pending endpoint, drop a single queued job by id, or cancel all pending deliveries for one binding. Events are the upstream signals (a case resolved, a run completed) that matched a binding; list them and replay any one to re-run its delivery.

GET/v1/delivery/pending
DELETE/v1/delivery/pending/:jobId
POST/v1/delivery/bindings/:id/cancel-pending
GET/v1/delivery/events
POST/v1/delivery/events/:id/replay