Back to Bidders

Pubtech

Features

Bidder Code pubtech 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 (nexx360)
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 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