Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 760 Bytes

otmBidAdapter.md

File metadata and controls

37 lines (30 loc) · 760 Bytes

Overview

Module Name: OTM Bidder Adapter Module Type: Bidder Adapter
Maintainer: [email protected]

Description

OTM Bidder Adapter for Prebid.js. About: https://otm-r.com

Use otm as bidder:

Params

  • tid required, specific id AdUnit slot.
  • domain optional, specific custom domain.
  • bidfloor optional.

AdUnits configuration example

    var adUnits = [{
      code: 'your-slot', //use exactly the same code as your slot div id.
      mediaTypes: {
          banner: {
              sizes: [[320, 480]]
          }
      },
      bids: [{
        bidder: 'otm',
        params: { 
            tid: 'XXXXX',
            domain: 'specific custom domain, if needed',
            bidfloor: 20
        }
      }]
    }];