This endpoint retrieves details about a previously sent email using the Inbound Email API.
Authentication
This endpoint requires authentication via Bearer token in Authorization header.Path Parameters
The Email ID returned when the email was sent.
Headers
Bearer token for API authentication.
Request Example
Response
Response Fields
Always returns
"email"
for this endpoint.The unique identifier for the email.
Array of recipient email addresses.
The sender email address, including display name if provided.
ISO 8601 timestamp of when the email was created.
The email subject line.
The HTML content of the email, if provided.
The plain text content of the email, if provided.
Array of CC recipient email addresses, or
[null]
if none.Array of BCC recipient email addresses, or
[null]
if none.Array of reply-to email addresses, or
[null]
if none.The last known status of the email. Possible values:
pending
- Email is queued for sendingdelivered
- Email was successfully sentfailed
- Email sending failedcreated
- Email was created but status is unknown
Email Status Mapping: The
last_event
field maps to the internal email status:pending
status →pending
eventsent
status →delivered
eventfailed
status →failed
event- Any other status →
created
event (default)
Important Notes
Access Control: You can only retrieve emails that were sent from your account. Attempting to access emails from other accounts will result in a 404 error.
Data Retention: Email data is retained according to your account’s data retention policy. Older emails may be archived or deleted based on your subscription plan.
1.0 - ✅