Skip to content

Commit

Permalink
Audigent HaloId Documentation (#2320)
Browse files Browse the repository at this point in the history
  • Loading branch information
antlauzon authored Sep 17, 2020
1 parent b45916e commit 13a37fd
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions dev-docs/modules/userId.md
Original file line number Diff line number Diff line change
Expand Up @@ -885,6 +885,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 [prebid@audigent.com](prebid@audigent.com).

#### 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

0 comments on commit 13a37fd

Please sign in to comment.