Returns the latest status per recipient for one HTTP send batch — use the trackingId from Send a transactional email.
Each item in recipients[] includes the per-recipient messageId (timeline key). For the full event history of one recipient, call Get email tracking (recipient timeline).
Optional dateStart / dateEnd (ISO-8601, UTC) bound the search window when resolving recipients.
| 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.
401Missing or invalid Bearer token
403Insufficient role or OAuth scope (transactional_email required)
404Message not found for this account

