Delivery log
The Delivery Log page gives you one search across every message deliverable — SMS, WhatsApp, email, and voice — instead of opening each channel workspace and searching there. Open it from Messages → Tools → Delivery log. Use the Delivery Log when you need to answer questions the per-channel workspaces cannot:- “Did this recipient get the WhatsApp after the SMS failed?” — a mixed-channel history in one result list.
- “Find this provider-side message ID from a carrier or Meta dashboard paste.” — a match against the provider reference, not a free-text scan.
- “What is the current status of this message ID?” — a direct lookup by the
msg_…identifier returned by the send API.
Search behaviour
The search box accepts:- A message ID returned by the send API (for example
msg_a1b2c3d4e5f6a7b8). A lookup that matches themsg_…shape is flagged as a correlated lookup — the scope is a single identifier rather than a free-text scan, and a correlation strip above the results lists which channels the matching rows span. Matching identifiers follow the 8–32 hexadecimal-character suffix shape after themsg_prefix. - A provider reference (the external message ID a carrier or Meta dashboard shows for the delivery).
- Free text matched against the recipient, the sender, and the searchable body content.
Shareable filtered links
The page reads its initial filters from the URL, so you can bookmark or share a pre-filtered view:q (search text), channel, status, direction. The dashboard URL parameters map one-to-one onto the list-messages API filter vocabulary — the same lookup the page performs is available over the API, so a URL built against the API’s filter vocabulary works in this page.
Query the log programmatically
Every lookup the dashboard page performs runs againstGET /api/v1/messages, so any workflow that outgrows a browser tab — a ledger reconciliation, a support script, an on-call runbook — can run the same lookup over the API. Each request carries an X-API-Key header (live keys are prefixed dv_live_sk_).
Correlated-id lookup
Pass themsg_… id from the send API as q — the single-identifier scope the dashboard flags as a correlated lookup:
Filtered scan
Pass the samechannel / status / direction values the shareable-link URL accepts:
Node SDK
The Node SDK (@devotel-orbit/node) wraps the same endpoint as orbit.messages.list():