Docs

Get Email

GET /inboxes/{inboxId}/emails/{emailId}

GET/inboxes/{inboxId}/emails/{emailId}

Required Tokens

FieldTypeRequiredDescription
BearerAuthorization: Bearer <api-key>OptionalYour API key. Pass it as the Bearer token on every request.
Event tokenx-Event-TokenOptionalRun **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

FieldTypeRequiredDescription
inboxIdGuidRequiredThe event ID (inbox ID equals event ID).
emailIdGuidRequiredThe ID of the email to retrieve.

Response

FieldTypeDescription
idGuidUnique email ID.
eventIdGuidThe event this email belongs to.
messageIdstringRaw SMTP Message-ID header.
inReplyTostringMessage-ID of the email being replied to, if any.
dateTimeDateTimeDate and time the email was received.
fromstringSender address.
tostringPrimary recipient address string.
toLineEmailIdentity[]Structured list of To recipients.
ccLineEmailIdentity[]Structured list of Cc recipients.
subjectstringEmail subject line.
referencesstring[]Array of referenced Message-IDs (SMTP References header).
htmlBodystringFull HTML body of the email.
aiSummarystring \| nullnull
isReadboolWhether the email has been marked as read.

EmailIdentity

FieldTypeDescription
namestringDisplay name of the recipient.
emailstringEmail address of the recipient.