Skip to content

Commit a3755ef

Browse files
bkboothclaude
andcommitted
docs(pixel): remove identify references from README
The identify() method is being removed from the pixel (PR #2846). Update the README to remove the Identity section and adjust the full consent description to reflect that identity signals come only from form submission auto-capture. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ceeded5 commit a3755ef

1 file changed

Lines changed: 1 addition & 11 deletions

File tree

packages/audience/pixel/README.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The `consent` option controls what the pixel collects. **Default is `none`** (no
3131
|-------|-----------------|-------------|----------|
3232
| `none` | Nothing — pixel loads but is inert | None | Before consent banner interaction |
3333
| `anonymous` | Device signals, attribution, page views, form submissions, link clicks (no PII) | `imtbl_anon_id`, `_imtbl_sid` | Anonymous analytics without PII |
34-
| `full` | Everything in `anonymous` + user identity (email hash, userId) | `imtbl_anon_id`, `_imtbl_sid` | After explicit user consent |
34+
| `full` | Everything in `anonymous` + email hash from form submissions | `imtbl_anon_id`, `_imtbl_sid` | After explicit user consent |
3535

3636
### Updating consent at runtime
3737

@@ -74,16 +74,6 @@ document.head.appendChild(s);
7474
</script>
7575
```
7676

77-
## Identity (Optional)
78-
79-
For sites with user accounts, identify known users at `full` consent:
80-
81-
```javascript
82-
window.__imtbl.push(['identify', 'user-123', 'passport', { email: 'player@example.com' }]);
83-
```
84-
85-
Note: traits passed via `identify` are sent as-is. Email values are only automatically SHA-256 hashed when captured from form submissions via auto-capture (see [Auto-Tracked Events](#auto-tracked-events)). If you pass an email in identify traits, hash it yourself before calling identify if that is required for your use case.
86-
8777
## Cookies
8878

8979
| Cookie | Lifetime | Purpose |

0 commit comments

Comments
 (0)