Skip to content

Commit

Permalink
updates techlab pair doc example
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Morales committed Dec 19, 2024
1 parent 76397c7 commit 11f3a00
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions dev-docs/modules/userid-submodules/open-pair.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ gulp build --modules=openPairIdSystem
| Param under userSync.userIds[] | Scope | Type | Description | Example |
| --- | --- | --- | --- | --- |
| name | Required | String | The name of PAIR ID user ID module. | `"openPairId"` |
| params | Optional | Object | Container of all module params. | |
| params | Optional | Object | Container of all module params. Each entry can be used to configured a specific clean room. | |
| params.liveramp | Optional | Object | Container of all liveramp cleanroom specified params. | |
| params.liveramp.storageKey | Optional | String | storage key to fetch liveramp provided PAIR Id, the default value is `"_lr_pairId"` | `"_lr_pairId"` |

Expand All @@ -50,7 +50,7 @@ pbjs.setConfig({
});
```

Or if to use cleanrooms provided implementation, it can be specified by adding the provider and their configs to the config, take liveramp as an example.
Clean rooms may use specific storage keys, this version supports specifying the storage key for any clean room such as the following example.

```javascript

Expand All @@ -62,7 +62,10 @@ pbjs.setConfig({
params: {
liveramp: {
storageKey: '_lr_pairId'
}
},
habu: {
storageKey: '_habu_pairId'
},
},
}]
}
Expand Down

0 comments on commit 11f3a00

Please sign in to comment.