Start at the sending domain
Every verified sender stores separate open and click defaults. New domains begin with both settings off.
Keep the default quiet. Enable opens, clicks, or both per sending domain, then override either signal on one send, broadcast, batch item, or automation.
Tracking is off by default. Open and click signals are useful diagnostics—not proof that a person read or intentionally engaged with a message.
providermailbox/accountThe closest explicit setting wins. That keeps a domain consistent without forcing the same tracking choice onto every kind of email.
Every verified sender stores separate open and click defaults. New domains begin with both settings off.
tracking.opens and tracking.clicks can independently override the domain. An omitted field still inherits its domain default.
NoticeAPI appends a signed open pixel, wraps eligible HTTP links, or leaves the message unchanged when both signals resolve to false.
Valid pixel and redirect requests become opened or clicked recipient events on the stored email timeline and logs.
opens and clicks resolve independently. In this request, open tracking is explicitly off and click tracking is on—even if the domain uses a different baseline.
JSON{
"from": "Acme <[email protected]>",
"to": "[email protected]",
"subject": "Your workspace is ready",
"tracking": {
"opens": false,
"clicks": true
},
"html": "<a href=\"https://acme.com/account\">Open workspace</a>"
}per-messagefalsetrueImmediate sends, scheduled jobs, batches, broadcasts, and automations all resolve the same two tracking fields.
One tracking object overrides the sender-domain defaults for either an immediate message or a scheduled send.
Send APIEach item in a batch carries its own tracking override, so one array can mix tracked and untracked messages.
Batch APIA broadcast-level override applies to the personalized HTML rendered for each contact in that send.
Broadcast APIAn automation-level override follows every template step until the automation is updated or the override is cleared.
Automation APIBoth paths use signed tracking tokens tied to the stored email. Their interpretation—and their blind spots—are different.
When enabled on an HTML email, NoticeAPI appends a signed pixel URL. A valid request stores an opened event and returns a no-store GIF.
Absolute HTTP and HTTPS links are replaced with signed NoticeAPI redirects. A valid request stores the original URL and returns a 302 to that destination.
Opened and clicked entries use the same recipient-event store as delivery outcomes, so the email detail and logs stay in time order.
Read opened and clicked events on the message timeline.
Search the recent recipient-event stream in chronological order.
Broadcast detail includes opened and clicked totals when tracking is enabled.
event{
"type": "clicked",
"recipient": "[email protected]",
"detail": "Tracked by NoticeAPI link redirect.",
"link": "https://acme.com/account",
"at": "2026-07-03T15:04:05.000Z"
}Use tracking to debug journeys and compare patterns. Do not treat one open or click as proof of intent, identity, or a completed product action.
Use your product event as the source of truth for completed actions.
Send one recipient per message when you need clean person-level attribution.
Keep tracking off for sensitive messages when the extra signal adds no value.
Create a sender, leave the defaults off, and enable a click or open override on the message where it will answer a real question.