Inspect delivery attempts for your webhooks.
See the Duffel documentation.
Summary
Functions
Retrieves a single webhook delivery by ID.
Lists one page of webhook deliveries.
Lazily streams all webhook deliveries across pages.
Functions
@spec get(Duffel.Client.t(), String.t()) :: {:ok, map()} | {:error, Duffel.Error.t()}
Retrieves a single webhook delivery by ID.
@spec list(Duffel.Client.t(), keyword() | map()) :: {:ok, Duffel.Page.t()} | {:error, Duffel.Error.t()}
Lists one page of webhook deliveries.
Parameters
:webhook_id- filter by webhook:delivery_success- filter by delivery outcome (boolean):limit/:after/:before- pagination (seeDuffel.Page)
@spec stream(Duffel.Client.t(), keyword() | map()) :: Enumerable.t()
Lazily streams all webhook deliveries across pages.
Takes the same parameters as list/2. Raises Duffel.Error if a page
request fails.