Skip to main content
Turnkey provides visibility into email delivery events sent from your organization. Use the Dashboard or the list_email_events API to look up delivery status by recipient, confirm whether an email was delivered, investigate delays, and debug failures such as bounces or complaints.
  • Per-recipient lookup by email address
  • Optional filtering by event type
  • Cursor-based pagination for large delivery histories
Email delivery events are stored at the parent organization level. Queries made from a sub-organization will return events for the parent organization.

Event types

Querying delivery events

1

Choose a recipient

Provide the recipient email address you want to inspect.
2

Filter by event type (optional)

Pass an eventType to narrow results to sends, deliveries, delays, bounces, or complaints.
3

Page through results

Results are ordered newest first. Use paginationOptions.limit to set the page size. For the next page, pass the last event ID as after. For the previous page, pass the first event ID as before.
4

Inspect delivery details

Review fields such as eventType, timestamp, fromAddress, toAddress, and details to understand what happened to the message.

Code examples