---
title: "Fetch all events history for one particular received email."
method: GET
path: "/inbound/events/{uuid}"
tags: ["Inbound Parsing"]
---

# Fetch all events history for one particular received email.

`GET /inbound/events/{uuid}`

This endpoint will show the list of all events history for one particular received email.

## Path parameters

- `uuid` string, required

## Response `200`

List of events for a particular received email on the basis of uuid.

- GetInboundEmailEventsByUuid
  - `receivedAt` string, date-time — Date when email was received on SMTP relay
  - `deliveredAt` string, date-time — Date when email was delivered successfully to client’s webhook
  - `recipient` string, email — Recipient’s email address
  - `sender` string, email — Sender’s email address
  - `messageId` string — Value of the Message-ID header. This will be present only after the processing is done.
  - `subject` string — Value of the Subject header. This will be present only after the processing is done.
  - `attachments` GetInboundEmailEventsByUuidAttachments[] — List of attachments of the email. This will be present only after the processing is done.
    - `name` string — filename specified in the Content-Disposition header of the attachment
    - `contentType` string — value of the Content-Type header of the attachment
    - `contentId` string — value of the Content-ID header of the attachment.
    - `contentLength` integer — size of the attachment in bytes
  - `logs` GetInboundEmailEventsByUuidLogs[] — List of events/logs that describe the lifecycle of the email on SIB platform
    - `date` string, date-time — Date of the event
    - `type` 'received' | 'processed' | 'webhookFailed' | 'webhookDelivered' — Type of the event

## Other responses

- `400` — bad request

---

[API](https://skmtc.net/getbrevo/apis/brevo-api.md) · [All operations](https://skmtc.net/getbrevo/apis/brevo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/getbrevo/brevo-api/revisions/2aec3cf66501/schema)
