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

Update dacid userid module documents #4045

Merged
merged 2 commits into from
Nov 23, 2022
Merged
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
9 changes: 7 additions & 2 deletions dev-docs/modules/userId.md
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ pbjs.setConfig({
### AudienceOne ID by DAC

AudienceOne ID, provided by [D.A.Consortium Inc.](https://www.dac.co.jp/), is ID for ad targeting by using 1st party cookie.
Please contact D.A.Consortium Inc. before using this ID.
Please visit [https://solutions.dac.co.jp/audienceone](https://solutions.dac.co.jp/audienceone) and request your Owner ID to get started.

Add the AudienceOne ID to your Prebid.js Package with:

Expand All @@ -493,14 +493,19 @@ gulp build --modules=dacIdSystem
| Param under userSync.userIds[] | Scope | Type | Description | Example |
| --- | --- | --- | --- | --- |
| name | Required | String | The name of this module | `"dacId"` |
| params | Required | Object | Details of module params. | |
| params.oid | Required | String | This is the Owner ID value obtained via D.A.Consortium Inc. | `"55h67qm4ck37vyz5"` |

#### AudienceOne ID Example

{% highlight javascript %}
pbjs.setConfig({
userSync: {
userIds: [{
name: 'dacId'
name: 'dacId',
params: {
'oid': '55h67qm4ck37vyz5' // Set your AudienceOne Owner ID here
}
}]
}
});
Expand Down