Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

33Across ID System: Add hem optional parameter #5793

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions dev-docs/modules/userid-submodules/33across.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ The following configuration parameters are available:
| name | Required | String | The name of this sub-module | `"33acrossId"` |
| params ||| Details for the sub-module initialization ||
| params.pid | Required | String | Partner ID (PID) | Please reach out to [[email protected]](mailto:[email protected]) and request your PID |
| params.hem | Optional | String | Hashed email address in sha256 format | `"ba4235544d6c91865fb07.."` |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this looks fine, but might consider adding the Prebid.js version where this parameter is supported once you know.

| params.storeFpid | Optional | Boolean | Indicates whether a supplemental first-party ID may be stored to improve addressability | `true` (default) or `false` |
| params.storeTpid | Optional | Boolean | Indicates whether a supplemental third-party ID may be stored to improve addressability | `true` (default) or `false` |
| storage |||||
Expand All @@ -46,8 +47,7 @@ pbjs.setConfig({
userIds: [{
name: "33acrossId",
params: {
pid: "0010b00002GYU4eBAH", // Example ID
storeFpid: true
pid: "0010b00002GYU4eBAH" // Example ID
},
storage: {
name: "33acrossId",
Expand All @@ -59,3 +59,7 @@ pbjs.setConfig({
}
});
```

## HEM Collection

33Across ID System supports user's hashed emails (HEMs). HEMs could be collected from 3 different sources in following priority order: `hem` configuration parameter, global `_33across.hem.sha256` field or from storage (cookie or local storage).
Loading