Skip to content

Latest commit

 

History

History
73 lines (62 loc) · 1.79 KB

kueezBidAdapter.md

File metadata and controls

73 lines (62 loc) · 1.79 KB

#Overview

Module Name: Kueez Bidder Adapter

Module Type: Bidder Adapter

Maintainer: [email protected]

Description

The Kueez adapter requires setup and approval from the Kueez team. Please reach out to [email protected] for more information.

The adapter supports Banner and Video(instream) media types.

Bid Parameters

Video

Name Scope Type Description Example
org required String the organization Id provided by your Kueez representative "test-publisher-id"
floorPrice optional Number Minimum price in USD. Misuse of this parameter can impact revenue 1.50
placementId optional String A unique placement identifier "12345678"
testMode optional Boolean This activates the test mode false

Test Parameters

var adUnits = [{
  code: 'banner-div',
  mediaTypes: {
    banner: {
      sizes: [
        [300, 250],
        [728, 90]
      ]
    }
  },
  bids: [{
    bidder: 'kueez',
    params: {
      org: 'test-org-id', // Required
      floorPrice: 0.2, // Optional
      placementId: '12345678', // Optional
      testMode: true // Optional
    }
  }]
},
  {
    code: 'dfp-video-div',
    sizes: [
      [640, 480]
    ],
    mediaTypes: {
      video: {
        playerSize: [
          [640, 480]
        ],
        context: 'instream'
      }
    },
    bids: [{
      bidder: 'kueez',
      params: {
        org: 'test-org-id', // Required
        floorPrice: 1.50, // Optional
        placementId: '12345678', // Optional
        testMode: true // Optional
      }
    }]
  }
];