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

NextRoll ID: docs #2756

Merged
merged 8 commits into from
Apr 20, 2021
Merged
Changes from 2 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
31 changes: 31 additions & 0 deletions dev-docs/modules/userId.md
Original file line number Diff line number Diff line change
Expand Up @@ -853,6 +853,36 @@ pbjs.setConfig({
});
{% endhighlight %}

### NextRoll ID

NextRoll is an industry-leading marketing technology and data stack that fuels growth for businesses of all kinds. Our technology powers two multi-million dollar high-growth businesses: AdRoll and RollWorks. The NextRoll ID helps publishers access unique demand in cookieless environments.

abijr marked this conversation as resolved.
Show resolved Hide resolved
#### NextRoll ID Configuration

Add it to your Prebid.js package with:

{: .alert.alert-info :}
gulp build --modules=nextrollIdSystem

Enable the module in configuration, with your partnerId:

{% highlight javascript %}
pbjs.setConfig({
userSync: {
userIds: [{
name: "nextroll",
storage: {
type: 'html5',
name: '_nextroll_id',
expires: 1
},
params: {
partnerId: 'YOUR_PARTNER_ID'
abijr marked this conversation as resolved.
Show resolved Hide resolved
}
}]
}
});
{% endhighlight %}

### Parrable ID

Expand Down Expand Up @@ -1393,6 +1423,7 @@ Bidders that want to support the User ID module in Prebid.js, need to update the
| Lotame Panorama ID | Lotame | bidRequest.userId.lotamePanoramaId | `"e4b96a3d9a8e8761cef5656fb05f16d53938069f1684df4b2257e276e8b89a0e"` |
| merkleID | Merkle | bidRequest.userId.merkleId | `"1111"` |
| netID | netID | bidRequest.userId.netId | `"fH5A3n2O8_CZZyPoJVD-eabc6ECb7jhxCicsds7qSg"` |
| NextRoll ID | NextRoll | bidRequest.userId.nextroll | `"bf3KawPMRifn1iXLtufo4AhoZHaBEYQpYOe1ZTJsY7IzuZ0LW/SjP/zpVGr09voA"` |
abijr marked this conversation as resolved.
Show resolved Hide resolved
| Parrable ID | Parrable | bidRequest.userId.parrableId | `{"eid":"01.1594654046.cd0972d861e98ff3723a368a6efa69287a0df3f1cac9142afc2e7aed1caa8dd1b7fc0590b3baf67525f53e1228024c2805b6041206c7a23e34bb823b0659547d7d1d0dac2a11938e867f"}` |
| PubCommon ID | n/a | bidRequest.userId.pubcid | `"1111"` |
| PubProvided ID | n/a | bidRequest.userId.pubProvidedId | `"1111"` |
Expand Down