Back to Bidders

iQM

Features

Bidder Code iqm Prebid.org Member no
Media Types display GDPR TCF Support no
User IDs none USP/CCPA Support no
Supply Chain Support no 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 no 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_iqm hb_bidder_iqm hb_adid_iqm
hb_size_iqm hb_source_iqm hb_format_iqm
hb_cache_host_iqm hb_cache_id_iqm hb_uuid_iqm
hb_cache_path_iqm hb_deal_iqm

Parameters

Name Scope Description Example
publisherId required The Publisher ID from iQM “df5fd732-c5f3-11e7-abc4-cec278b6b50a”
geo.country required The publisher country “USA”
placementId required The Placement ID from iQM 23451
bidfloor optional Bid Floor 0.50

Description

Module that connects to iQM demand sources

Test Parameters

var adUnits = [{
        code: 'div-gpt-ad-1460505748561-0',
        mediaTypes: {
          banner: {
            sizes: [[300,250]]
          }
        },

        bids: [{
          bidder: 'iqm',
          params: {
            geo:{
              country:'USA'
            },

            publisherId: 'df5fd732-c5f3-11e7-abc4-cec278b6b50a',
            placementId: 23451,
            bidfloor: 0.50
          }
        }]

      }]

adUnit Video

 var videoAdUnit = {
      code: 'video1',
      mediaTypes: {
        video: {
          playerSize: [640, 480],
          context: 'instream'
        }
      },
      bids: [{
        bidder: 'iqm',
        params: {
          // placementId: iosDevice ? 13239390 : 13232361, // Add your own placement id here. Note, skippable video is not supported on iOS
          publisherId: 'df5fd732-c5f3-11e7-abc4-cec278b6b50a',
          placementId: 23451,
          geo:{
            country:'USA'
          },

          bidfloor: 0.05,
          video: {
            placement :2,
            mimes: ['video/mp4'],
            protocols: [2,5],
            skipppable: true,
            playback_method: ['auto_play_sound_off']
          }
        }
      }]
      };

Back to Bidders