List sent emails
listSentEmailsList outbound emails sent by this org, with cursor pagination and filters. Bodies are omitted from list rows to keep responses small — use getSentEmail to fetch a specific row with full body. Useful for auditing delivery status, finding bounced sends, or checking gate-denied attempts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of sent emails to return (1–100, default 50). | |
| cursor | No | Pagination cursor from a previous response's `meta.cursor` field. | |
| status | No | Filter to rows in this status. Use "scheduled" to find pending scheduled sends (cancelable via cancelScheduledSend) and "canceled" for ones already canceled. | |
| date_to | No | Inclusive upper bound on created_at (ISO 8601). | |
| date_from | No | Inclusive lower bound on created_at (ISO 8601). | |
| request_id | No | Filter to the row matching a specific server-issued request_id from a /send-mail response. | |
| idempotency_key | No | Filter to rows with the given client idempotency key. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | ||
| tool | Yes | ||
| status | Yes | ||
| statusText | No |