Skip to content

Commit

Permalink
Add the 33across hem optional parameter to the documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosfelix committed Jan 8, 2025
1 parent 9aaf096 commit b0f0b3e
Showing 1 changed file with 6 additions and 2 deletions.
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.."` |
| 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).

0 comments on commit b0f0b3e

Please sign in to comment.