Skip to content

Audigent HaloId Documentation #2320

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

Merged
merged 1 commit into from
Sep 17, 2020
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
34 changes: 34 additions & 0 deletions dev-docs/modules/userId.md
Original file line number Diff line number Diff line change
Expand Up @@ -849,6 +849,40 @@ pbjs.setConfig({
});
{% endhighlight %}

### Audigent HaloId

Audigent is a next-generation data management platform and a first-of-a-kind "data agency" containing some of the most exclusive content-consuming audiences across desktop, mobile and social platforms. Our HaloId module allows for user id resolution and Audigent user data segmentation to be retrieved for users across the web. For assistance setting up your module please contact us at [[email protected]]([email protected]).

#### HaloId Configuration
Add the Halo ID system to your Prebid.js package with:

{: .alert.alert-info :}
gulp build --modules=userId,haloIdSystem

Add HaloId to the userSync configuration.

```
pbjs.setConfig({
userSync: {
userIds: [{
name: 'haloId',
storage: {
name: 'haloId',
type: 'html5'
}
}]
}
});
```

The `request.userId.haloId` will contain the Audigent HaloId and associated segments:
```
{
"haloId": "user-halo-id",
"auSeg": ["segment1", "segment2"]
}
```

## Adapters Supporting the User ID Sub-Modules

{% assign bidder_pages = site.pages | where: "layout", "bidder" %}
Expand Down