#Overview
Module Name: MinuteMedia Bidder Adapter
Module Type: Bidder Adapter
Maintainer: [email protected]
Module that connects to MinuteMedia's demand sources.
The MinuteMedia adapter requires setup and approval from the MinuteMedia. Please reach out to [email protected] to create an MinuteMedia account.
The adapter supports Video(instream) & Banner.
Name | Scope | Type | Description | Example |
---|---|---|---|---|
org |
required | String | MinuteMedia publisher Id provided by your MinuteMedia representative | "1234567890abcdef12345678" |
floorPrice |
optional | Number | Minimum price in USD. Misuse of this parameter can impact revenue | 2.00 |
placementId |
optional | String | A unique placement identifier | "12345678" |
testMode |
optional | Boolean | This activates the test mode | false |
var adUnits = [{
code: 'dfp-video-div',
sizes: [
[640, 480]
],
mediaTypes: {
video: {
playerSize: [
[640, 480]
],
context: 'instream'
}
},
bids: [{
bidder: 'minutemedia',
params: {
org: '1234567890abcdef12345678', // Required
floorPrice: 2.00, // Optional
placementId: 'video-test', // Optional
testMode: false // Optional
}
}]
},
{
code: 'dfp-banner-div',
sizes: [
[640, 480]
],
mediaTypes: {
banner: {
sizes: [
[640, 480]
]
}
},
bids: [{
bidder: 'minutemedia',
params: {
org: '1234567890abcdef12345678', // Required
floorPrice: 2.00, // Optional
placementId: 'banner-test', // Optional
testMode: false // Optional
}
}]
}
];