diff --git a/dev-docs/modules/userid-submodules/utiqMtp.md b/dev-docs/modules/userid-submodules/utiqMtp.md index 4de21ce7d8..6f061622a4 100644 --- a/dev-docs/modules/userid-submodules/utiqMtp.md +++ b/dev-docs/modules/userid-submodules/utiqMtp.md @@ -25,9 +25,10 @@ If you are interested in using Utiq on your website, please contact Utiq on to verify which are these SSPs. + ## 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. @@ -54,15 +57,18 @@ To do that, you can use below configuration: 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 - }] - } - } + 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 + }, + ], + }, + }, }); ```