Module Name: adtrgtme Bidder Adapter Module Type: Bidder Adapter Maintainer: [email protected]
The Adtrgtme Bid Adapter is an OpenRTB interface that support display demand from Adtarget
- Media Types: Banner
- Multi-format adUnits
- Price floors module
- Advertiser domains
The minimal requirements for the 'adtrgtme' bid adapter to generate an outbound bid-request to our Adtrgtme are:
- At least 1 banner adUnit
- Your Adtrgtme site id bidder.params.sid
const adUnits = [{
code: 'your-placement',
mediaTypes: {
banner: {
sizes: [[300, 250]]
}
},
bids: [
{
bidder: 'adtrgtme',
params: {
sid: '1220291391', // Site/App ID provided from SSP
}
}
]
}];
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".
It's possible to use params.zid for strict identification for placement id provided from SSP like tagid.
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
}
}
}
}
}]
}];