Skip to content

Latest commit

 

History

History
76 lines (66 loc) · 1.65 KB

vertamedia.md

File metadata and controls

76 lines (66 loc) · 1.65 KB
layout title description pbjs biddercode media_types sidebarType
bidder
Vertamedia
Prebid Vertamedia Bidder Adaptor
true
vertamedia
video
1

Bid params

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

Name Scope Description Example Type
aid required The source ID from Vertamedia. 350975 integer

Description

Get access to multiple demand partners across VertaMedia AdExchange and maximize your yield with VertaMedia header bidding adapter.

VertaMedia header bidding adapter connects with VertaMedia 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: 'div-test-div',
        sizes: [[640, 480]],
        mediaTypes: {
          video: {
            context: 'instream'
          }
        },
        bids: [{
          bidder: 'vertamedia',
          params: {
            aid: 331133
          }
        }]
      },

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

      // Banner adUnit
      {
        code: 'div-test-div',
        sizes: [[300, 250]],
        bids: [{
          bidder: 'vertamedia',
          params: {
            aid: 350975
          }
        }]
      }
    ];