Return the latest status per recipient for one HTTP send batch.
Pass the trackingId from Send a transactional email. Each recipients[] item includes per-recipient messageId — use it with Get email tracking (recipient timeline). For the full event history of a single-recipient send, Get email tracking (single message timeline) is usually enough.
Optional dateStart / dateEnd bound the search window. A 200 returns trackingId plus recipients[].
Common failures: 404 unknown batch; 401/403 auth issues.
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Returns the latest delivery status per recipient for one HTTP send batch.
Use the trackingId from Send a transactional email. For multi-recipient sends, this is the batch id — not the per-recipient timeline key.
Authentication
Authorization: Bearer {access_token} with scope transactional_email or all. No Principal header.
Path and query
| Parameter | Location | Description |
|---|---|---|
trackingId | path | Batch trackingId from send response |
dateStart | query | Optional ISO-8601 UTC start of range |
dateEnd | query | Optional ISO-8601 UTC end of range |
Example — cURL
curl -X GET 'https://connect.routee.net/email/tracking/batch/51b1738c-5fc5-4aa2-85a4-3b063c486cd7?dateStart=2026-07-01T00:00:00Z&dateEnd=2026-07-10T23:59:59Z' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'Response
| Field | Description |
|---|---|
trackingId | Echo of the batch id |
recipients[] | One summary row per recipient (latest event) |
Each recipients[] item includes:
| Field | Description |
|---|---|
messageId | Per-recipient id — pass to Get email tracking (recipient timeline) |
recipient, from, subject | Envelope summary |
status, deliveryStatus, event | Latest human-readable and MTA status |
channel | API, SMTP, or MARKETING |
date | Latest event timestamp (UTC) |
openedCount, clickCount | Engagement counters |
Next step
For the full queued → sent → delivered timeline of one recipient:
curl -X GET 'https://connect.routee.net/email/tracking/single/BATCH_TRACKING_ID/recipients/RECIPIENT_MESSAGE_ID' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'See Email API for the identifier glossary.
401Unauthorized — missing, invalid, or expired Bearer token. Obtain a new token from Authentication.
403Access denied — token lacks transactional_email (or equivalent) permission/scope.

