Skip to content

Latest commit

 

History

History
93 lines (83 loc) · 1.95 KB

admatic.md

File metadata and controls

93 lines (83 loc) · 1.95 KB
layout title description pbjs pbs biddercode media_types gvl_id tcfeu_supported usp_supported coppa_supported gpp_sids schain_supported dchain_supported userIds prebid_member pbs_app_supported safeframes_ok floors_supported multiformat_supported ortb_blocking_supported sidebarType
bidder
AdMatic
Prebid AdMatic Bidder Adapter.
true
true
admatic
banner,video,native
1281
true
true
true
tcfeu, tcfca, usnat, usstate_all, usp
true
false
all
true
true
true
true
will-bid-on-any
partial
1

Description

AdMatic header bidding adapter connects with AdMatic demand sources to fetch bids for banner network ID. Please reach out to your account manager or prebid@admatic.com.tr for more information.

Bid params

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

Name Scope Description Example Type
networkId required The network ID from AdMatic 12345 number
host required RTB Host layer.serve.admatic.com.tr string

Test Parameters

300x250 banner test

var adUnits = [{
  code: 'your-slot_1-div',
  mediaTypes: {
    banner: { sizes: [[300, 250]] },
  },
  bids: [{
      bidder: 'admatic',
      params: { 
          networkId: 12345,
          host: 'layer.serve.admatic.com.tr'
      }
  }]
},{
  code: 'your-slot_2-div',
  mediaTypes: {
    native: { ... },
  },
  bids: [{
      bidder: 'admatic',
      params: { 
          networkId: 12345,
          host: 'layer.serve.admatic.com.tr'
      }
  }]
},{
  code: 'your-slot_3-div',
  mediaTypes: {
    video: { ... },
  },
  bids: [{
      bidder: 'admatic',
      params: { 
          networkId: 12345,
          host: 'layer.serve.admatic.com.tr'
      }
  }]
}];

UserSync example

pbjs.setConfig({
  userSync: {
    iframeEnabled: true,
    syncEnabled: true,
    syncDelay: 1
  }
});