Back to Bidders

Pubtech

Features

Bidder Code pubtech Prebid.org Member no
Media Types display, video, native TCF-EU Support yes
User IDs all USP/CCPA Support yes
Supply Chain Support yes COPPA Support check with bidder
Demand Chain Support check with bidder GPP Support check with bidder
Supports Deals check with bidder Prebid.js Adapter yes
IAB GVL ID 965 (nexx360) 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

Bid Params

Name Scope Description Example Type
tagId required tag ID "luvxjvgn" string
videoTagId optional Video tag ID "luvxjvgn" string
nativeTagId optional 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/pubtech/Homepage/HP/Header-Ad" string

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: 'pubtech',
         params: {
            tagId: 'luvxjvgn'
         }
       }]
   },
   // Video adUnit
   {
        code: 'video1',
        mediaTypes: {
            video: {
                playerSize: [640, 480],
                context: 'instream'
            }
        },
        bids: [{
            bidder: 'pubtech',
            params: {
               tagId: 'luvxjvgn'
            }
        }]
    },
     // Native adUnit
   {
        code: 'native1',
        mediaTypes:
            native: {
                title: {
                    required: true
                },
                image: {
                    required: true
                },
                sponsoredBy: {
                    required: true
                }
            }
        },
        bids: [{
            bidder: 'pubtech',
            params: {
               tagId: 'luvxjvgn'
            }
        }]
    },
    // Multiformat Ad
   {
        code: 'multi1',
        mediaTypes: {
            video: {
                playerSize: [640, 480],
                context: 'instream'
            },
            banner: {
              sizes: [[300, 250], [300,600]]
            },
            native: {

            }
        },
        bids: [{
            bidder: 'pubtech',
            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_pubtech hb_bidder_pubtech hb_adid_pubtech
hb_size_pubtech hb_source_pubtech hb_format_pubtech
hb_cache_host_pubtec hb_cache_id_pubtech hb_uuid_pubtech
hb_cache_path_pubtec hb_deal_pubtech

Back to Bidders