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
http://cdn.adhigh.net/prebid/index.html
Configuration
Here is a list of the available parameters of the GetIntent adapter:
| Parameter | Obligation | Comment |
|---|---|---|
| pid | required | Publisher ID, which is registered in the GetIntent system |
| tid | required | Tag ID of the particular tag |
| cur | optional | Currency of the bid. Unless provided, the default from Publisher settings will be applied |
| floor | optional | Floor price |
Example
var adUnits = [{
code: 'div-gpt-ad-1460505748561-0',
sizes: [[240, 400]],
bids: [{
bidder: 'getintent',
params: {
pid: '7',
tid: 'prebid_test'
}
}]
}];