Skip to content

Commit cf0f92b

Browse files
muuki88bretg
andauthored
Add tcf configuration information to utiq (prebid#5557)
* Add tcf configuration information to utiq * wording updates We changed the name of the "GDPR Enforcement" module a while back --------- Co-authored-by: bretg <[email protected]>
1 parent 78bfc69 commit cf0f92b

File tree

1 file changed

+24
-0
lines changed
  • dev-docs/modules/userid-submodules

1 file changed

+24
-0
lines changed

dev-docs/modules/userid-submodules/utiq.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,30 @@ pbjs.setConfig({
3030
})
3131
```
3232

33+
You can find more information at [docs.utiq.com/docs/programmatic-integration](https://docs.utiq.com/docs/programmatic-integration)
34+
35+
### TCF Activity Integration
36+
37+
If you use the Prebid.js [TCF Control Module](/dev-docs/modules/tcfControl.html), which prevents access to local storage for non consented vendors, you may need to add a vendor exception for the Utiq user id module to work, as Utiq is not a TCF vendor and will be automatically blocked by Prebid when TCF Control is enabled. Utiq performs its own consent check, outside TCF, to ensure that there is no device storage access in the absence of consent.
38+
39+
To do that, you can use below configuration:
40+
41+
```javascript
42+
pbjs.setConfig({
43+
consentManagement: {
44+
gdpr: {
45+
cmpApi: 'iab',
46+
rules: [{ // these are the default values
47+
purpose: "storage",
48+
enforcePurpose: true, // block localStorage based on purpose 1 of TCF
49+
enforceVendor: true, // block localStorage for non consented / non TCF vendors
50+
vendorExceptions: ["utiqId"] // configuration line to add to make utiq exception
51+
}]
52+
}
53+
}
54+
});
55+
```
56+
3357
## Utiq ID onboarding
3458

3559
If you wish to find out more about Utiq, please contact <[email protected]>

0 commit comments

Comments
 (0)