From b69e1434e757124338b7293f9887f66ee440d52f Mon Sep 17 00:00:00 2001 From: Anna Yablonsky Date: Thu, 4 Jun 2026 09:56:59 +0300 Subject: [PATCH 1/6] adding document --- dev-docs/bidders/copper6.md | 80 +++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 dev-docs/bidders/copper6.md diff --git a/dev-docs/bidders/copper6.md b/dev-docs/bidders/copper6.md new file mode 100644 index 0000000000..294e807083 --- /dev/null +++ b/dev-docs/bidders/copper6.md @@ -0,0 +1,80 @@ +--- +layout: bidder +title: Copper6 +description: Prebid Copper6 Bidder Adaptor +biddercode: copper6ssp +userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId +tcfeu_supported: false +usp_supported: true +gvl_id: 1356 +coppa_supported: false +schain_supported: true +gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp +floors_supported: true +media_types: banner, video +prebid_member: false +safeframes_ok: false +deals_supported: false +pbs_app_supported: false +fpd_supported: false +ortb_blocking_supported: false +multiformat_supported: will-bid-on-one +pbjs: true +pbs: false +sidebarType: 1 +--- + +## Bid Params for Prebid.js + +{: .table .table-bordered .table-striped } + +| Name | Scope | Description | Example | Type | +|------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------| +| `cId` | required | The connection ID from Copper6. | `'562524b21b1c1f08117fc7f9'` | `string` | +| `pId` | required | The publisher ID from Copper6 (pbjs only). | `'59ac17c192832d0011283fe3'` | `string` | +| `bidFloor` | optional | The minimum bid value desired. Copper6 will not respond with bids lower than this value. | `0.90` | `float` | + +## Bid Params for Prebid Server + +{: .table .table-bordered .table-striped } + +| Name | Scope | Description | Example | Type | +|------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------| +| `cId` | required | The connection ID from Copper6. | `'562524b21b1c1f08117fc7f9'` | `string` | + +### Example + + ```javascript +var adUnits = [{ + code: 'banner-div', + mediaTypes: { + banner: { + sizes: [ + [300, 250], + [728, 90] + ] + } + }, + bids: [{ + bidder: 'copper6ssp', + params: { + cId: '562524b21b1c1f08117fc7f9', // Required - PROVIDED DURING SETUP... + pId: '59ac17c192832d0011283fe3', // Required - PROVIDED DURING SETUP... + bidFloor: 1.23 // Optional + } + }] +} +]; + +// configure pbjs to enable user syncing +pbjs.setConfig({ + userSync: { + filterSettings: { + iframe: { + bidders: 'copper6ssp', + filter: 'include' + } + } + } +}); +``` From 194a74c89cf64e1824e8586ad58364988c3b0c61 Mon Sep 17 00:00:00 2001 From: Anna Yablonsky Date: Tue, 9 Jun 2026 09:16:19 +0300 Subject: [PATCH 2/6] working on the right file --- dev-docs/bidders/copper6.md | 80 --------------------------------- dev-docs/bidders/copper6ssp.md | 82 ++++++++++++++++++++++++++-------- 2 files changed, 63 insertions(+), 99 deletions(-) delete mode 100644 dev-docs/bidders/copper6.md diff --git a/dev-docs/bidders/copper6.md b/dev-docs/bidders/copper6.md deleted file mode 100644 index 294e807083..0000000000 --- a/dev-docs/bidders/copper6.md +++ /dev/null @@ -1,80 +0,0 @@ ---- -layout: bidder -title: Copper6 -description: Prebid Copper6 Bidder Adaptor -biddercode: copper6ssp -userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId -tcfeu_supported: false -usp_supported: true -gvl_id: 1356 -coppa_supported: false -schain_supported: true -gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp -floors_supported: true -media_types: banner, video -prebid_member: false -safeframes_ok: false -deals_supported: false -pbs_app_supported: false -fpd_supported: false -ortb_blocking_supported: false -multiformat_supported: will-bid-on-one -pbjs: true -pbs: false -sidebarType: 1 ---- - -## Bid Params for Prebid.js - -{: .table .table-bordered .table-striped } - -| Name | Scope | Description | Example | Type | -|------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------| -| `cId` | required | The connection ID from Copper6. | `'562524b21b1c1f08117fc7f9'` | `string` | -| `pId` | required | The publisher ID from Copper6 (pbjs only). | `'59ac17c192832d0011283fe3'` | `string` | -| `bidFloor` | optional | The minimum bid value desired. Copper6 will not respond with bids lower than this value. | `0.90` | `float` | - -## Bid Params for Prebid Server - -{: .table .table-bordered .table-striped } - -| Name | Scope | Description | Example | Type | -|------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------| -| `cId` | required | The connection ID from Copper6. | `'562524b21b1c1f08117fc7f9'` | `string` | - -### Example - - ```javascript -var adUnits = [{ - code: 'banner-div', - mediaTypes: { - banner: { - sizes: [ - [300, 250], - [728, 90] - ] - } - }, - bids: [{ - bidder: 'copper6ssp', - params: { - cId: '562524b21b1c1f08117fc7f9', // Required - PROVIDED DURING SETUP... - pId: '59ac17c192832d0011283fe3', // Required - PROVIDED DURING SETUP... - bidFloor: 1.23 // Optional - } - }] -} -]; - -// configure pbjs to enable user syncing -pbjs.setConfig({ - userSync: { - filterSettings: { - iframe: { - bidders: 'copper6ssp', - filter: 'include' - } - } - } -}); -``` diff --git a/dev-docs/bidders/copper6ssp.md b/dev-docs/bidders/copper6ssp.md index ee0131c1ac..294e807083 100644 --- a/dev-docs/bidders/copper6ssp.md +++ b/dev-docs/bidders/copper6ssp.md @@ -1,36 +1,80 @@ --- layout: bidder -title: Copper6SSP -description: Prebid Copper6SSP Bidder Adapter +title: Copper6 +description: Prebid Copper6 Bidder Adaptor biddercode: copper6ssp -gpp_sids: usstate_all -gvl_id: 1356 -tcfeu_supported: true +userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId +tcfeu_supported: false usp_supported: true -coppa_supported: true +gvl_id: 1356 +coppa_supported: false schain_supported: true -deals_supported: false +gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp floors_supported: true +media_types: banner, video +prebid_member: false +safeframes_ok: false +deals_supported: false +pbs_app_supported: false fpd_supported: false ortb_blocking_supported: false -media_types: banner, video, native multiformat_supported: will-bid-on-one -userIds: all pbjs: true -pbs: true -pbs_app_supported: true -safeframes_ok: true +pbs: false sidebarType: 1 --- -### Bid Params +## Bid Params for Prebid.js + +{: .table .table-bordered .table-striped } + +| Name | Scope | Description | Example | Type | +|------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------| +| `cId` | required | The connection ID from Copper6. | `'562524b21b1c1f08117fc7f9'` | `string` | +| `pId` | required | The publisher ID from Copper6 (pbjs only). | `'59ac17c192832d0011283fe3'` | `string` | +| `bidFloor` | optional | The minimum bid value desired. Copper6 will not respond with bids lower than this value. | `0.90` | `float` | + +## Bid Params for Prebid Server {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|---------------|----------|--------------|---------------------------------|------------| -| `placementId` | optional | Placement Id | `'0'` | `'string'` | -| `endpointId` | optional | Endpoint Id | `'0'` | `'string'` | -### Note +| Name | Scope | Description | Example | Type | +|------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------| +| `cId` | required | The connection ID from Copper6. | `'562524b21b1c1f08117fc7f9'` | `string` | + +### Example + + ```javascript +var adUnits = [{ + code: 'banner-div', + mediaTypes: { + banner: { + sizes: [ + [300, 250], + [728, 90] + ] + } + }, + bids: [{ + bidder: 'copper6ssp', + params: { + cId: '562524b21b1c1f08117fc7f9', // Required - PROVIDED DURING SETUP... + pId: '59ac17c192832d0011283fe3', // Required - PROVIDED DURING SETUP... + bidFloor: 1.23 // Optional + } + }] +} +]; -For the prebid server and prebid.js you only need to use one parameter: either placementId or endpointId +// configure pbjs to enable user syncing +pbjs.setConfig({ + userSync: { + filterSettings: { + iframe: { + bidders: 'copper6ssp', + filter: 'include' + } + } + } +}); +``` From bbdcfdcda3d93cb3a8730866e02d740a2b8f192a Mon Sep 17 00:00:00 2001 From: Anna Yablonsky Date: Tue, 9 Jun 2026 09:19:04 +0300 Subject: [PATCH 3/6] remove nonexistent user id manager --- dev-docs/bidders/copper6ssp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/copper6ssp.md b/dev-docs/bidders/copper6ssp.md index 294e807083..24a5e95cec 100644 --- a/dev-docs/bidders/copper6ssp.md +++ b/dev-docs/bidders/copper6ssp.md @@ -3,7 +3,7 @@ layout: bidder title: Copper6 description: Prebid Copper6 Bidder Adaptor biddercode: copper6ssp -userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId +userIds: criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId tcfeu_supported: false usp_supported: true gvl_id: 1356 From 36831a78702772295afce937a1507c88b347fc08 Mon Sep 17 00:00:00 2001 From: Anna Yablonsky Date: Tue, 9 Jun 2026 09:22:31 +0300 Subject: [PATCH 4/6] name --- dev-docs/bidders/copper6ssp.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-docs/bidders/copper6ssp.md b/dev-docs/bidders/copper6ssp.md index 24a5e95cec..08459348e0 100644 --- a/dev-docs/bidders/copper6ssp.md +++ b/dev-docs/bidders/copper6ssp.md @@ -1,7 +1,7 @@ --- layout: bidder -title: Copper6 -description: Prebid Copper6 Bidder Adaptor +title: Copper6SSP +description: Prebid Copper6SSP Bidder Adapter biddercode: copper6ssp userIds: criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId tcfeu_supported: false From 2c4c705f9b414c567b396581d615f234399421c9 Mon Sep 17 00:00:00 2001 From: Anna Yablonsky Date: Thu, 30 Jul 2026 09:16:20 +0300 Subject: [PATCH 5/6] keep backward compatibility --- dev-docs/bidders/copper6ssp.md | 56 +++++++++++++++++++++++++++++++--- 1 file changed, 51 insertions(+), 5 deletions(-) diff --git a/dev-docs/bidders/copper6ssp.md b/dev-docs/bidders/copper6ssp.md index 08459348e0..146cd75471 100644 --- a/dev-docs/bidders/copper6ssp.md +++ b/dev-docs/bidders/copper6ssp.md @@ -26,13 +26,24 @@ sidebarType: 1 ## Bid Params for Prebid.js +### New request params {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------| -| `cId` | required | The connection ID from Copper6. | `'562524b21b1c1f08117fc7f9'` | `string` | -| `pId` | required | The publisher ID from Copper6 (pbjs only). | `'59ac17c192832d0011283fe3'` | `string` | -| `bidFloor` | optional | The minimum bid value desired. Copper6 will not respond with bids lower than this value. | `0.90` | `float` | +| Name | Scope | Description | Example | Type | +|---------------|----------|------------------------------------------------------------------------------------------|------------------------------|------------| +| `cId` | required | The connection ID from Copper6. | `'562524b21b1c1f08117fc7f9'` | `string` | +| `pId` | required | The publisher ID from Copper6 (pbjs only). | `'59ac17c192832d0011283fe3'` | `string` | +| `bidFloor` | optional | The minimum bid value desired. Copper6 will not respond with bids lower than this value. | `0.90` | `float` | + + +### backward compatibility (will be removed in v12) +{: .table .table-bordered .table-striped } + +| Name | Scope | Description | Example | Type | +|---------------|----------|------------------------------------------------------------------------------------------|------------------------------|------------| +| `placementId` | optional | Placement Id | `'0'` | `'string'` | +| `endpointId` | optional | Endpoint Id | `'0'` | `'string'` | + ## Bid Params for Prebid Server @@ -44,6 +55,7 @@ sidebarType: 1 ### Example +#### New request example ```javascript var adUnits = [{ code: 'banner-div', @@ -78,3 +90,37 @@ pbjs.setConfig({ } }); ``` + +#### Supported backward compatibility +``` javascript +var adUnits = [{ + code: 'banner-div', + mediaTypes: { + banner: { + sizes: [ + [300, 250], + [728, 90] + ] + } + }, + bids: [{ + bidder: 'copper6ssp', + params: { + placementId: '562524b21b1c1f08117fc7f9', + } + }] +} +]; + +// configure pbjs to enable user syncing +pbjs.setConfig({ + userSync: { + filterSettings: { + iframe: { + bidders: 'copper6ssp', + filter: 'include' + } + } + } +}); +``` \ No newline at end of file From 4ab72ae156b8ad8368b10b3c31615741d844400d Mon Sep 17 00:00:00 2001 From: Anna Yablonsky Date: Thu, 30 Jul 2026 09:21:56 +0300 Subject: [PATCH 6/6] stype fix --- dev-docs/bidders/copper6ssp.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-docs/bidders/copper6ssp.md b/dev-docs/bidders/copper6ssp.md index 146cd75471..0e8d59f0e0 100644 --- a/dev-docs/bidders/copper6ssp.md +++ b/dev-docs/bidders/copper6ssp.md @@ -35,7 +35,6 @@ sidebarType: 1 | `pId` | required | The publisher ID from Copper6 (pbjs only). | `'59ac17c192832d0011283fe3'` | `string` | | `bidFloor` | optional | The minimum bid value desired. Copper6 will not respond with bids lower than this value. | `0.90` | `float` | - ### backward compatibility (will be removed in v12) {: .table .table-bordered .table-striped } @@ -44,7 +43,6 @@ sidebarType: 1 | `placementId` | optional | Placement Id | `'0'` | `'string'` | | `endpointId` | optional | Endpoint Id | `'0'` | `'string'` | - ## Bid Params for Prebid Server {: .table .table-bordered .table-striped } @@ -56,6 +54,7 @@ sidebarType: 1 ### Example #### New request example + ```javascript var adUnits = [{ code: 'banner-div', @@ -92,6 +91,7 @@ pbjs.setConfig({ ``` #### Supported backward compatibility + ``` javascript var adUnits = [{ code: 'banner-div', @@ -123,4 +123,4 @@ pbjs.setConfig({ } } }); -``` \ No newline at end of file +```