Skip to content

Commit 4665848

Browse files
therevoltingxMiguel Morales
and
Miguel Morales
authored
PAIR: adds TechLab version documentation (#5785)
* adds techlab pair documentation * adds matcher/inserter config for pair module --------- Co-authored-by: Miguel Morales <[email protected]>
1 parent 72eb5fd commit 4665848

File tree

1 file changed

+91
-0
lines changed

1 file changed

+91
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
---
2+
layout: userid
3+
title: Open PAIR ID
4+
description: Open PairId User ID sub-module
5+
useridmodule: openPairIdSystem
6+
bidRequestUserId: openPairId
7+
eidsource: pair-protocol.com
8+
example: '"nnjbddb46374634mndjhd78jh"'
9+
---
10+
11+
Originally developed by Google and subsequently donated to the industry.
12+
This version supports single and two Data Clean Room setups, in which the advertiser and publisher use different clean rooms.
13+
14+
(Publisher Advertiser Identity Reconciliation) is a secure and privacy-forward way for enabling advertisers and publishers to reconcile their
15+
first-party data for marketing use cases via advanced data encryption methods without the
16+
reliance on third-party cookies.
17+
18+
PAIR can help advertisers and publishers maintain control of first-party data while ensuring there is no pooling of data, no leakage of data, no leakage of insights, durablility for the future using secure encryption methods, and no user tracking across publishers.
19+
20+
See this [page](https://iabtechlab.com/pair/) for more information about the PAIR protocol.
21+
22+
Add it to your Prebid.js package with:
23+
24+
```bash
25+
gulp build --modules=openPairIdSystem
26+
```
27+
28+
## PAIR ID Configuration
29+
30+
{: .table .table-bordered .table-striped }
31+
32+
| Param under userSync.userIds[] | Scope | Type | Description | Example |
33+
| --- | --- | --- | --- | --- |
34+
| name | Required | String | The name of PAIR ID user ID module. | `"openPairId"` |
35+
| params | Optional | Object | Container of all module params. Each entry can be used to configured a specific clean room. | |
36+
37+
## PAIR ID Examples
38+
39+
Publishers manage PAIR Ids themselves can store pairIds as a byte64 encoded array of ids in local storage and/or 1st party cookies entry `pairId`.
40+
41+
```javascript
42+
43+
// should have byte64 value ready in 'pairId' local storage/cookie entry
44+
45+
pbjs.setConfig({
46+
userSync: {
47+
userIds: [{
48+
name: 'openPairId'
49+
}]
50+
}
51+
});
52+
```
53+
54+
Clean rooms may use specific storage keys, this version supports specifying the storage key for any clean room such as the following example.
55+
56+
```javascript
57+
58+
// value in 'pairId' local storage/cookie entry will be combined with ids provided by cleanroom liveramp
59+
pbjs.setConfig({
60+
userSync: {
61+
userIds: [
62+
{
63+
name: 'openPairId',
64+
params: {
65+
cleanRoomVendor: {
66+
storageKey: '_storage_key'
67+
}
68+
}
69+
}
70+
]
71+
}
72+
});
73+
```
74+
75+
As per the PAIR specification, you can define the inserter and matcher.
76+
77+
```javascript
78+
pbjs.setConfig({
79+
userSync: {
80+
userIds: [
81+
{
82+
name: 'openPairId',
83+
params: {
84+
inserter: 'some-domain.com',
85+
matcher: 'another-domain.com'
86+
}
87+
}
88+
]
89+
}
90+
});
91+
```

0 commit comments

Comments
 (0)