Skip to content

Latest commit

 

History

History
76 lines (68 loc) · 1.98 KB

adtrgtmeBidAdapter.md

File metadata and controls

76 lines (68 loc) · 1.98 KB

Overview

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

Description

The Adtrgtme Bid Adapter is an OpenRTB interface that support display demand from Adtarget

Supported Features:

  • Media Types: Banner
  • Multi-format adUnits
  • Price floors module
  • Advertiser domains

Mandatory Bidder Parameters

The minimal requirements for the 'adtrgtme' bid adapter to generate an outbound bid-request to our Adtrgtme are:

  1. At least 1 banner adUnit
  2. Your Adtrgtme site id bidder.params.sid

Example:

const adUnits = [{
    code: 'your-placement',
    mediaTypes: {
            banner: {
                sizes: [[300, 250]]
            }
        },
    bids: [
        {
            bidder: 'adtrgtme',
            params: {
                sid: '1220291391', // Site/App ID provided from SSP
            }
        }
    ]
}];

Optional

Price floors module & bidfloor

The adapter supports the Prebid.org Price Floors module and will use it to define the outbound bidfloor and currency. By default the adapter will always check the existance of Module price floor. If a module price floor does not exist you can set a custom bid floor for your impression using "params.bidOverride.imp.bidfloor" and "params.bidOverride.imp.bidfloorcur".

Strict placement identification

It's possible to use params.zid for strict identification for placement id provided from SSP like tagid.

Example:

const adUnits = [{
    code: 'your-placement',
    mediaTypes: {
        banner: {
            sizes: [
                [300, 250]
            ]
        }
    },
    bids: [{
        bidder: 'adtrgtme',
        params: {
            sid: '1220291391',
            zid: '1836455615',
            bidOverride :{
                imp: {
                    bidfloor: 5.00, // bidOverride bidfloor
                    bidfloorcur: 'USD' // bidOverride currency
                }
            }
            }
        }
    }]
}];