Skip to content

Latest commit

 

History

History
122 lines (114 loc) · 2.69 KB

1accord.md

File metadata and controls

122 lines (114 loc) · 2.69 KB
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

Bid Params

{: .table .table-bordered .table-striped }

Name Scope Description Example Type
tagId required tag ID "testnexx" string

First Party Data

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[]

Test Parameters

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