Back to Bidders

Nexx360

Features

Bidder Code nexx360 Prebid.org Member no
Media Types display, video, native GDPR TCF Support yes
User IDs all USP/CCPA Support yes
Supply Chain Support yes COPPA Support no
Demand Chain Support no GPP Support no
Supports Deals check with bidder Prebid.js Adapter yes
IAB GVL ID check with bidder Prebid Server Adapter no
Floors Module Support yes First Party Data Support check with bidder
Multi Format Support check with bidder ORTB Blocking Support check with bidder
Safeframes OK check with bidder

"Send All Bids" Ad Server Keys

These are the bidder-specific keys that would be targeted within GAM in a Send-All-Bids scenario. GAM truncates keys to 20 characters.
hb_pb_nexx360 hb_bidder_nexx360 hb_adid_nexx360
hb_size_nexx360 hb_source_nexx360 hb_format_nexx360
hb_cache_host_nexx36 hb_cache_id_nexx360 hb_uuid_nexx360
hb_cache_path_nexx36 hb_deal_nexx360

Bid Params

Name Scope Description Example Type
tagId required Nexx360 tag ID "luvxjvgn" string
videoTagId optional Nexx360 Video tag ID "luvxjvgn" string
nativeTagId optional Nexx360 Native tag ID "luvxjvgn" string
allBids optional Return all bids true boolean
divId optional divId linked to adUnit "div-1" string
adUnitName optional A code to identify adUnit "header-ad" string
adUnitPath optional A reference to adUnit Path "/12345/nexx360/Homepage/HP/Header-Ad" string

Bidder Config

You can allow writing in localStorage pbjs.bidderSettings for the bidder nexx360

pbjs.bidderSettings = {
    nexx360: {
        storageAllowed : true
    }
}

First Party Data

Publishers should use the ortb2 method of setting First Party Data.

Test Parameters

var adUnits = [
   // Banner adUnit
   {
      code: 'banner-div',
      mediaTypes: {
        banner: {
          sizes: [[300, 250], [300,600]]
        }
      },
      bids: [{
         bidder: 'nexx360',
         params: {
            tagId: 'luvxjvgn'
         }
       }]
   },
   // Video adUnit
   {
        code: 'video1',
        mediaTypes: {
            video: {
                playerSize: [640, 480],
                context: 'instream'
            }
        },
        bids: [{
            bidder: 'nexx360',
            params: {
               tagId: 'luvxjvgn'
            }
        }]
    },
     // Native adUnit
   {
        code: 'native1',
        mediaTypes:
            native: {
                title: {
                    required: true
                },
                image: {
                    required: true
                },
                sponsoredBy: {
                    required: true
                }
            }
        },
        bids: [{
            bidder: 'nexx360',
            params: {
               tagId: 'luvxjvgn'
            }
        }]
    },
    // Multiformat Ad
   {
        code: 'multi1',
        mediaTypes: {
            video: {
                playerSize: [640, 480],
                context: 'instream'
            },
            banner: {
              sizes: [[300, 250], [300,600]]
            },
            native: {

            }
        },
        bids: [{
            bidder: 'nexx360',
            params: {
               tagId: 'luvxjvgn',
               videoTagId: 'luvxjvgn'
            }
        }]
    };
];

Back to Bidders