Retrieve details of an email sending request
| Field | Type | Description |
|---|---|---|
request_id | string | The transmission/request identifier |
message_id | string | null | The unique message identifier |
event_id | string | Unique identifier for this event |
type | string | The event type (see Event Types below) |
timestamp | string | ISO 8601 timestamp of the event |
subject | string | null | Email subject line |
friendly_from | string | null | Sender display name and address |
sending_domain | string | null | Domain used for sending |
click_tracking | boolean | null | Whether click tracking is enabled |
open_tracking | boolean | null | Whether open tracking is enabled |
rcpt_to | string | Recipient email address |
raw_rcpt_to | string | Raw recipient with display name |
recipient_domain | string | Domain of the recipient |
mailbox_provider | string | Detected mailbox provider (e.g., Gmail, Outlook) |
mailbox_provider_region | string | Geographic region of the mailbox provider |
rcpt_meta | object | Custom metadata attached to the recipient |
sending_ip | string | null | IP address used for sending |
reason | string | null | Human-readable reason for bounces/failures |
raw_reason | string | null | Raw SMTP response or error message |
error_code | string | null | Error code for failed deliveries |
transactional | boolean | Whether the email was marked as transactional |
msg_size | integer | null | Size of the message in bytes |
injection_time | string | null | ISO 8601 timestamp when email was injected |
| Type | Description |
|---|---|
injection | Email was received and queued for delivery |
delivery | Email was successfully delivered |
bounce | Email bounced (hard or soft bounce) |
out_of_band | Asynchronous bounce received after initial delivery |
policy_rejection | Email rejected due to policy |
delay | Delivery was delayed |
open | Recipient opened the email |
initial_open | First open by recipient |
click | Recipient clicked a link |
spam_complaint | Recipient marked email as spam |
list_unsubscribe | Recipient used list-unsubscribe header |
link_unsubscribe | Recipient clicked unsubscribe link |
| Code | Description |
|---|---|
not_found | Request with specified ID not found |
invalid_request_id | The provided request ID format is invalid |