Skip to content

Latest commit

 

History

History
111 lines (101 loc) · 2.48 KB

File metadata and controls

111 lines (101 loc) · 2.48 KB
layout title description biddercode aliasCode media_types gvl_id tcfeu_supported gpp_supported userIds schain_supported coppa_supported usp_supported safeframes_ok prebid_member pbjs pbs deals_supported enable_download sidebarType
bidder
SSP Copper6
SSP Copper6 Bidder Adapter
copper6
adtelligent
video,banner
410 (adtelligent)
true
true
britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId
true
true
true
true
false
true
true
false
false
1

Bid params

{: .table .table-bordered .table-striped }

Name Scope Description Example Type
aid required The source ID from Copper6 Media. 12412 integer

Description

Please don't use this adapter. To connect with Copper6 demand, please use the Copper6SSP. You can find details here: https://docs.prebid.org/dev-docs/bidders/copper6ssp.html


Copper6 Media header bidding adapter connects with Copper6 Media demand sources in order to fetch bids. This adapter provides a solution for accessing Video demand and display demand.

Test Parameters

    var adUnits = [

      // Video instream adUnit
      {
        code: 'test-div',
        mediaTypes: {
          video: {
            context: 'instream',
            playerSize: [640, 480]
          }
        },
        bids: [{
          bidder: 'copper6',
          params: {
            aid: 472386
          }
        }]
      },

      // Video outstream adUnit
      {
        code: 'test-div',
        mediaTypes: {
          video: {
            context: 'outstream',
            playerSize: [640, 480]
          }
        },
        bids: [{
          bidder: 'copper6',
          params: {
            aid: 472386
          }
        }]
      },

       // Video ADPOD adUnit
      {
        code: 'test-div',
        sizes: [[640, 480]],
        mediaTypes: {
          video: {
            context: 'adpod',
            playerSize: [640, 480]            
          }
        },
        bids: [{
          bidder: 'copper6',
          params: {
            aid: 472386
          }
        }]
      },

      // Banner adUnit
      {
        code: 'test-div',
        mediaTypes:{
            banner:{
                sizes: [[300, 250]]
            }
        }
        bids: [{
          bidder: 'copper6',
          params: {
            aid: 529814
          }
        }]
      }
    ];