Docs

Get Inbox

GET /inboxes/{inboxId}

GET/inboxes/{inboxId}

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 all emails in the event inbox, ordered from newest to oldest. Each item includes a truncated preview of the email body (up to 120 characters).

The inboxId is the same as your eventId — each event has exactly one inbox scoped to it.

Requires EventCommunicationsRead permission on the event.

Path Parameters

FieldTypeRequiredDescription
inboxIdGuidRequiredThe event ID (inbox ID equals event ID).

Response

Returns an array of inbox items.

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.
subjectstringEmail subject line.
isReadboolWhether the email has been marked as read.
emailPreviewstringTruncated plain-text body preview (max 120 characters).
refrencesstring[]Array of referenced Message-IDs (SMTP References header).