You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Verizon Media user id module documentation (#2368)
* Updates to Verizon Media documentation
* Add Verizon Media module name to list of options in basic configuration section
* Copy update
* Remove previously shifed docs for a different provider.
* Addressing PR feedback
* Add documentation for pixelId parameter
* Addressing PR feedback
Co-authored-by: slimkrazy <[email protected]>
| params | Based on User ID sub-module | Object |||
63
63
| storage | Optional | Object | The publisher can specify some kind of local storage in which to store the results of the call to get the user ID. This can be either cookie or HTML5 storage. This is not needed when `value` is specified or the ID system is managing its own storage ||
64
64
| storage.type | Required | String | Must be either `"cookie"` or `"html5"`. This is where the results of the user ID will be stored. |`"cookie"`|
@@ -1169,6 +1169,58 @@ pbjs.setConfig({
1169
1169
});
1170
1170
{% endhighlight %}
1171
1171
1172
+
### Verizon Media ID
1173
+
1174
+
Verizon Media's ID is a person based ID and doesn't depend on 3rd party cookies.
1175
+
1176
+
Verizon Media's ID is designed to enable ad tech platforms to recognize and match users consistently across the open web. The Verizon Media ID is built on top of Verizon Media's robust and proprietary ID Graph, delivering a higher find rate of audiences on publishers' sites user targeting that respects privacy.
1177
+
1178
+
The Verizon Media ID honors privacy choices from our own [Privacy Dashboard](https://www.verizonmedia.com/policies/us/en/verizonmedia/privacy/dashboard/index.html), as well as global privacy acts.
Add Verizon Media ID to your Prebid.js package with:
1183
+
1184
+
{: .alert.alert-info :}
1185
+
gulp build --modules=userId,verizonMediaIdSystem
1186
+
1187
+
1188
+
#### Verizon Media ID configuration
1189
+
1190
+
{: .table .table-bordered .table-striped }
1191
+
| Param under userSync.userIds[]| Scope | Type | Description | Example |
1192
+
| --- | --- | --- | --- | --- |
1193
+
| name | Required | String | The name of this module. |`'verizonMediaId'`|
1194
+
| params | Required | Object | Container of all module params. ||
1195
+
| params.pixelId | Required | Number | The Verizon Media supplied publisher specific pixel Id |`8976`|
1196
+
| params.he | Required | String | The SHA-256 hashed user email address |`'ed8ddbf5a171981db8ef938596ca297d5e3f84bcc280041c5880dba3baf9c1d4'`|
1197
+
| storage | Required | Object | This object defines where and for how long the results of the call to get a user ID will be stored. ||
1198
+
| storage.type | Required | String | This parameter defines where the resolved user ID will be stored (either `'cookie'` or `'html5'` localstorage).|`'cookie'`|
1199
+
| storage.name | Required | String | The name of the cookie or html5 localstorage where the resolved user ID will be stored. |`'vmuid'`|
1200
+
| storage.expires | Recommended | Integer | How long (in days) the user ID information will be stored. The recommended value is `1`|`1`|
0 commit comments