diff --git a/dev-docs/bidders/blis.md b/dev-docs/bidders/blis.md index 0555f34539..a585e99b21 100644 --- a/dev-docs/bidders/blis.md +++ b/dev-docs/bidders/blis.md @@ -10,7 +10,7 @@ coppa_supported: true gpp_sids: tcfeu, usnat, usp schain_supported: true dchain_supported: false -userId: adserver, liveramp, sharedid, pubcid, id5-sync, criteo, quantcast +userId: adserver, liveramp, sharedid, pubcid, id5-sync, criteo media_types: banner, video, native safeframes_ok: false deals_supported: true diff --git a/dev-docs/bidders/openx.md b/dev-docs/bidders/openx.md index 694e8e423c..ba96f20976 100644 --- a/dev-docs/bidders/openx.md +++ b/dev-docs/bidders/openx.md @@ -12,7 +12,7 @@ usp_supported: true coppa_supported: true gpp_supported: true floors_supported: true -userIds: admixerId, adtelligentId, amxId, britepoolId, criteo, dapId, deepintentId, dmdId, fabrickId, hadronId, id5Id, identityLink, idxId, imuId, intentIqId, kinessoId, liveIntentId, lotamePanoramaId, merkleId, mwOpenLinkId, naveggId, netId, novatiq, parrableId, pubCommonId, publinkId, quantcastId, sharedId, tapadId, uid2, unifiedId, verizonMediaId, zeotapIdPlus +userIds: admixerId, adtelligentId, amxId, britepoolId, criteo, dapId, deepintentId, dmdId, fabrickId, hadronId, id5Id, identityLink, idxId, imuId, intentIqId, kinessoId, liveIntentId, lotamePanoramaId, merkleId, mwOpenLinkId, naveggId, netId, novatiq, parrableId, pubCommonId, publinkId, sharedId, tapadId, uid2, unifiedId, verizonMediaId, zeotapIdPlus prebid_member: true fpd_supported: true gvl_id: 69 diff --git a/dev-docs/bidders/teads.md b/dev-docs/bidders/teads.md index dac0e35448..f7eed42b27 100644 --- a/dev-docs/bidders/teads.md +++ b/dev-docs/bidders/teads.md @@ -12,7 +12,7 @@ tcfeu_supported: true dsa_supported: true usp_supported: true schain_supported: true -userIds: uid2Id, identityLinkId, lotamePanoramaId, id5Id, criteoId, connectId, quantcastId, publinkId, sharedId, merkleId, kinessoId +userIds: uid2Id, identityLinkId, lotamePanoramaId, id5Id, criteoId, connectId, publinkId, sharedId, merkleId, kinessoId media_types: banner, video gvl_id: 132 deals_supported: true diff --git a/dev-docs/modules/userid-submodules/quantcast.md b/dev-docs/modules/userid-submodules/quantcast.md deleted file mode 100644 index 0b4b145dff..0000000000 --- a/dev-docs/modules/userid-submodules/quantcast.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -layout: userid -title: Quantcast ID -description: Quantcast ID User ID sub-module -useridmodule: quantcastIdSystem -bidRequestUserId: quantcastId -eidsource: quantcast.com -example: '"1111"' ---- - -The Prebid Quantcast ID module stores a Quantcast ID in a first party cookie. The ID is then made available in the bid request. The ID from the cookie added in the bidstream allows Quantcast to more accurately bid on publisher inventories without third party cookies, which can result in better monetization across publisher sites from Quantcast. And, it’s free to use! For easier integration, you can work with one of our SSP partners, like PubMatic, who can facilitate the legal process as well as the software integration for you. - -Add it to your Prebid.js package with: - -```bash -gulp build --modules=userId,quantcastIdSystem -``` - -Quantcast’s privacy policies for the services rendered can be found at - - -Publishers deploying the module are responsible for ensuring legally required notices and choices for users. - -The Quantcast ID module will only perform any action and return an ID in situations where: - -1. the publisher has not set a ‘coppa' flag on the prebid configuration on their site (see [pbjs.setConfig.coppa](https://docs.prebid.org/dev-docs/publisher-api-reference/setConfig.html#setConfig-coppa)) -2. there is not a IAB us-privacy string indicating the digital property has provided user notice and the user has made a choice to opt out of sale -3. if GDPR applies, an IAB TCF v2 string exists indicating that Quantcast does not have consent for purpose 1 (cookies, device identifiers, or other information can be stored or accessed on your device for the purposes presented to you), or an established legal basis (by default legitimate interest) for purpose 10 (your data can be used to improve existing systems and software, and to develop new products). - -## Quantcast ID Configuration - -{: .table .table-bordered .table-striped } - -| Param under userSync.userIds[] | Scope | Type | Description | Example | -| --- | --- | --- | --- | --- | -| name | Required | String | `"quantcastId"` | `"quantcastId"` | -| params | Optional | Object | Details for Quantcast initialization. | | -| params.ClientID | Optional | String | Optional parameter for Quantcast prebid managed service partners. The parameter is not required for websites with Quantcast Measure tag. Reach out to Quantcast for ClientID if you are not an existing Quantcast prebid managed service partner: | | - -## Quantcast ID Example - -```javascript -pbjs.setConfig({ - userSync: { - userIds: [{ - name: "quantcastId" - }] - } -}); -```