Skip to content
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
23 changes: 23 additions & 0 deletions dev-docs/modules/userid-submodules/utiqMtp.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,35 @@ pbjs.setConfig({
userIds: [
{
name: "utiqMtpId",
bidders: ["bidder1", "bidder2", ...]
},
],
},
})
```

## TCF Activity Integration

If you use the Prebid.js [TCF Control Module](/dev-docs/modules/tcfControl), 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.

To do that, you can use below configuration:

```javascript
pbjs.setConfig({
consentManagement: {
gdpr: {
cmpApi: 'iab',
rules: [{ // these are the default values
purpose: "storage",
enforcePurpose: true, // block localStorage based on purpose 1 of TCF
enforceVendor: true, // block localStorage for non consented / non TCF vendors
vendorExceptions: ["utiqMtpId"] // configuration line to add to make utiq exception
}]
}
}
});
```

## Utiq ID onboarding

If you wish to find out more about Utiq, please contact <csm@utiq.com>