Docs
Mark Email As Read
PUT /inboxes/{inboxId}/emails/{emailId}/read
PUT
/inboxes/{inboxId}/emails/{emailId}/readRequired 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. |
Updates the read status of an email. Set isRead to true to mark as read, or false to mark as unread. Returns 204 No Content on success.
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 update. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| isRead | bool | Required | `true` to mark as read, `false` to mark as unread. |
Response
Returns 204 No Content on success.