Initial

The publisher, that aims to use GetIntent Prebid.js adapter must be first registered in the GetIntent system, and receive its unique Publisher ID. It's also possible to configure single currency for all bids. After that, you can start bidding. The name of the adapter - 'getintent'.

Live Demo

Banner - http://cdn.adhigh.net/prebid/index.html

Video - https://cdn.adhigh.net/prebid/vpbid.html

Configuration

Here is a list of the available parameters of the GetIntent adapter:

ParameterObligationComment
pidrequiredPublisher ID, which is registered in the GetIntent system
tidrequiredTag ID of the particular tag
curoptionalCurrency of the bid. Unless provided, the default from Publisher settings will be applied
flooroptionalFloor price

Example

var adUnits = [{
        code: 'div-gpt-ad-1460505748561-0',
        sizes: [[240, 400]],
        bids: [{
            bidder: 'getintent',
            params: {
               pid: '7',
               tid: 'prebid_test'
            }
        }]
    }];
var adUnits = [{
    code: 'div-gpt-ad-1460505748561-0',
    sizes: [
        [480, 352]
    ],
    mediaType: 'video',
    bids: [{
        bidder: 'getintent',
        params: {
            pid: '7',
            tid: 'prebid_test'
        }
    }]
}];