Skip to content

Latest commit

 

History

History
90 lines (84 loc) · 1.6 KB

adgrid.md

File metadata and controls

90 lines (84 loc) · 1.6 KB
layout title description biddercode media_types pbjs tcfeu_supported dsa_supported gvl_id usp_supported coppa_supported gpp_sids schain_supported dchain_supported userId safeframes_ok deals_supported floors_supported fpd_supported prebid_member ortb_blocking_supported privacy_sandbox sidebarType
bidder
AdGrid
Prebid AdGrid Bidder Adapter
adgrid
banner, video
true
false
false
none
false
false
none
true
false
false
false
false
true
false
false
false
false
1

Note

The AdGrid Bidding Adapter requires setup and approval before beginning. Please reach out to support@adgrid.io for more details.

Bid Params

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

Name Scope Description Example Type
domainId required Publisher Id 30164 integer

Test Parameters

var adUnits = [
  // Banner adUnit
  {
    code: 'test-div-1',
    mediaTypes:{
      banner:{
        sizes: [[300, 250]]
      }
    }
    bids: [{
      bidder: 'adgrid',
      params: {
        domainId: 12345
      }
    }]
  },
  {
    code: 'test-div-2',
    mediaTypes:{
      banner:{
        sizes: [[728, 90], [320, 50]]
      }
    }
    bids: [{
      bidder: 'adgrid',
      params: {
        domainId: 67890
      }
    }]
  },
  // Video adUnit
  {
    code: 'test-video-div',
    mediaTypes: {
      video: {
        playerSize: [
          [640, 480]
        ],
        context: 'instream'
      }
    },
    bids: [{
      bidder: 'adgrid',
      params: {
        domainId: 12345
      }
    }]
  }
];