Docs
Get Email
GET /inboxes/{inboxId}/emails/{emailId}
GET
/inboxes/{inboxId}/emails/{emailId}Required Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
| Event token | x-Event-Token | Optional | Run **Get Tokens** in the Authorization folder, or call `GET /Events/{eventId}/authorize` manually. |
Returns the full details of a single email, including the complete HTML body, structured To/Cc recipient lists, and any AI-generated summary (if one has been generated via Get Email Summary).
Requires EventCommunicationsRead permission on the event.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| inboxId | Guid | Required | The event ID (inbox ID equals event ID). |
| emailId | Guid | Required | The ID of the email to retrieve. |
Response
| Field | Type | Description |
|---|---|---|
| id | Guid | Unique email ID. |
| eventId | Guid | The event this email belongs to. |
| messageId | string | Raw SMTP Message-ID header. |
| inReplyTo | string | Message-ID of the email being replied to, if any. |
| dateTime | DateTime | Date and time the email was received. |
| from | string | Sender address. |
| to | string | Primary recipient address string. |
| toLine | EmailIdentity[] | Structured list of To recipients. |
| ccLine | EmailIdentity[] | Structured list of Cc recipients. |
| subject | string | Email subject line. |
| references | string[] | Array of referenced Message-IDs (SMTP References header). |
| htmlBody | string | Full HTML body of the email. |
| aiSummary | string \| null | null |
| isRead | bool | Whether the email has been marked as read. |
EmailIdentity
| Field | Type | Description |
|---|---|---|
| name | string | Display name of the recipient. |
| string | Email address of the recipient. |