layout | title | description | biddercode | media_types | tcfeu_supported | gpp_supported | userIds | schain_supported | coppa_supported | usp_supported | safeframes_ok | prebid_member | pbjs | pbs | gvl_id | sidebarType |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
bidder |
Adtelligent |
Prebid Adtelligent Bidder Adapter |
adtelligent |
video,banner |
true |
true |
all (with commercial activation) |
true |
true |
true |
true |
true |
true |
true |
410 |
1 |
{% include dev-docs/pbjs-adapter-required-for-pbs.md %}
{: .table .table-bordered .table-striped }
Name | Scope | Description | Example | Type |
---|---|---|---|---|
aid |
required | The source ID from Adtelligent. | 350975 |
integer |
Get access to multiple demand partners across Adtelligent AdExchange and maximize your yield with Adtelligent header bidding adapter.
Adtelligent header bidding adapter connects with Adtelligent demand sources in order to fetch bids. This adapter provides a solution for accessing Video demand and display demand.
Adtelligent now supports adpod.
var adUnits = [
// Video instream adUnit
{
code: 'test-div',
mediaTypes: {
video: {
context: 'instream',
playerSize: [640, 480]
}
},
bids: [{
bidder: 'adtelligent',
params: {
aid: 331133
}
}]
},
// Video outstream adUnit
{
code: 'test-div',
mediaTypes: {
video: {
context: 'outstream',
playerSize: [640, 480]
}
},
bids: [{
bidder: 'adtelligent',
params: {
aid: 331133
}
}]
},
// Video ADPOD adUnit
{
code: 'test-div',
sizes: [[640, 480]],
mediaTypes: {
video: {
context: 'adpod',
playerSize: [640, 480]
}
},
bids: [{
bidder: 'adtelligent',
params: {
aid: 331133
}
}]
},
// Banner adUnit
{
code: 'test-div',
mediaTypes:{
banner:{
sizes: [[300, 250]]
}
}
bids: [{
bidder: 'adtelligent',
params: {
aid: 350975
}
}]
}
];
It is possible to configure requests to be split into chunks so as to have fewer bid requests in a single http request (default value is 10).
pbjs.setBidderConfig({
config: {
adtelligent: {
chunkSize: 1 // makes 1 http request per 1 adunit configured
}
}
});