Skip to content

Latest commit

 

History

History
76 lines (65 loc) · 2.03 KB

minutemediaBidAdapter.md

File metadata and controls

76 lines (65 loc) · 2.03 KB

#Overview

Module Name: MinuteMedia Bidder Adapter

Module Type: Bidder Adapter

Maintainer: [email protected]

Description

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.

Bid Parameters

Video

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

Test Parameters

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
            }
        }]
    }
];