---
title: "Get email tracking (recipient timeline)"
method: GET
path: "/email/tracking/single/{trackingId}/recipients/{messageId}"
tags: ["Email API"]
---

# Get email tracking (recipient timeline)

`GET /email/tracking/single/{trackingId}/recipients/{messageId}`

Returns the ordered **event timeline** for **one recipient** inside a batch send.

Path parameters:
- **`trackingId`** — batch id from the send response
- **`messageId`** — per-recipient id from batch summary `recipients[].messageId` or search list rows

Returns an empty array when the recipient does not belong to the batch. Set `include_content=true` to include HTML/text body on applicable events.

## Path parameters

- `trackingId` string, required
- `messageId` string, required

## Query parameters

- `include_content` boolean

## Headers

- `Authorization` string, required

## Response `200`

Recipient timeline events

- EmailTracking[]
  - `trackingId` string — Batch id from POST /transactional-email — primary customer correlation id.
  - `messageId` string — Per-recipient worker log id — timeline key for one recipient in a batch.
  - `recipient` string
  - `from` string
  - `subject` string
  - `status` string
  - `deliveryStatus` string
  - `event` string
  - `channel` 'API' | 'SMTP' | 'MARKETING'
  - `campaignName` string
  - `envelope` string
  - `date` string, date-time
  - `openedCount` integer
  - `clickCount` integer
  - `tags` string[]
  - `content` string — Present when `include_content=true` on single GET.
  - `results` EmailTrackingSmtpResult[]
    - `deliveryStatus` string
    - `time` string
    - `messages` integer
    - `dsn` boolean
    - `description` string
    - `status` string
    - `state` string
    - `attempt` integer
  - `callbackBody` object
  - `dsn` object

## Other responses

- `401` — Missing or invalid Bearer token
- `403` — Insufficient role or OAuth scope (`transactional_email` required)
- `404` — Message not found for this account

---

[API](https://skmtc.net/routee/apis/auth.md) · [All operations](https://skmtc.net/routee/apis/auth/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/routee/auth/revisions/5cef04e8f7d8/schema)
