HomePrivacy & Governance › What must never reach Adobe Analytics

What must never reach Adobe Analytics

Purpose: Identify and block PII before it reaches Adobe.

Who this page is for

AudienceWhy it matters to you
EveryoneKnow what is PII
DevelopersValidate before sending

PII Rules: What Must Never Reach Adobe

Golden rule: If it identifies a person, do not send it.

Definitely PII

Never send:

Probably PII

Don't send without good reason:

What's safe

Safe to send:

How PII sneaks in

Mistake 1: Logging user email in page name

// WRONG - email is visible
s.pageName = "user-profile-" + userEmail;

Mistake 2: Query parameters with PII

page.com/checkout?user=alice@example.com&order=12345
// WRONG - email in URL

Mistake 3: Custom data with full name

// WRONG - full name sent
adobeDataLayer.push({
  user: { name: "Alice Smith" }
});

Fix: Use hashed or generic identifiers

// RIGHT - hashed email
const hashedEmail = sha256(userEmail);
s.prop1 = hashedEmail;

// RIGHT - generic user ID
s.prop2 = "user_123";

// RIGHT - segment only
adobeDataLayer.push({
  user: { segment: "premium_member" }
});

Monitoring for PII

Monthly audit:

  1. Export sample of data
  2. Search for email patterns: "@"
  3. Search for SSN patterns: "xxx-xx-xxxx"
  4. If found, investigate source
  5. Fix immediately

Use: Search in Workspace for "@" or common patterns

---

Next: Consent and the Web SDK

Quick navigation