Back to Bidders

Nexx360

Features

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

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

"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

Back to Bidders