layout | title | description | pbjs | biddercode | aliasCode | gvl_id | tcfeu_supported | usp_supported | gpp_supported | schain_supported | dchain_supported | floors_supported | userIds | tcf2_supported | media_types | safeframes_ok | deals_supported | sidebarType | fpd_supported | multiformat_supported |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
bidder |
1Accord |
Prebid 1Accord Bidder Adapter |
true |
1accord |
nexx360 |
965 (nexx360) |
true |
true |
true |
true |
false |
true |
all |
true |
banner, video, native |
true |
true |
1 |
true |
will-bid-on-any |
{: .table .table-bordered .table-striped }
Name | Scope | Description | Example | Type |
---|---|---|---|---|
tagId |
required | tag ID | "testnexx" |
string |
Publishers should use the ortb2
method of setting First Party Data.
The following fields are supported:
- ortb2.site.ext.data.*
- ortb2.site.content.data[]
- ortb2.user.ext.data.*
- ortb2.user.data[]
var adUnits = [
// Banner adUnit
{
code: 'banner-div',
mediaTypes: {
banner: {
sizes: [[300, 250], [300,600]]
}
},
bids: [{
bidder: '1accord',
params: {
tagId: 'testnexx'
}
}]
},
// Video adUnit
{
code: 'video1',
mediaTypes: {
video: {
playerSize: [640, 480],
context: 'instream'
}
},
bids: [{
bidder: '1accord',
params: {
tagId: 'testnexx'
}
}]
},
// Native adUnit
{
code: 'native1',
mediaTypes:
native: {
title: {
required: true
},
image: {
required: true
},
sponsoredBy: {
required: true
}
}
},
bids: [{
bidder: '1accord',
params: {
tagId: 'testnexx'
}
}]
},
// Multiformat Ad
{
code: 'multi1',
mediaTypes: {
video: {
playerSize: [640, 480],
context: 'instream'
},
banner: {
sizes: [[300, 250], [300,600]]
}
},
bids: [{
bidder: '1accord',
params: {
tagId: 'testnexx',
videoTagId: 'testnexx'
}
}]
};
];