Skip to content

Latest commit

 

History

History
54 lines (43 loc) · 1.61 KB

riseBidAdapter.md

File metadata and controls

54 lines (43 loc) · 1.61 KB

#Overview

Module Name: Rise Bidder Adapter

Module Type: Bidder Adapter

Maintainer: [email protected]

Description

Module that connects to Rise's demand sources.

The Rise adapter requires setup and approval from the Rise. Please reach out to [email protected] to create an Rise account.

The adapter supports Video(instream).

Bid Parameters

Video

Name Scope Type Description Example
org required String Rise publisher Id provided by your Rise representative "1234567890abcdef12345678"
floorPrice optional Number Minimum price in USD. Misuse of this parameter can impact revenue 2.00
placementId optional String A unique placement identifier "12345678"
testMode optional Boolean This activates the test mode false
rtbDomain optional String Sets the seller end point "www.test.com"
is_wrapper private Boolean Please don't use unless your account manager asked you to false

Test Parameters

var adUnits = [
       {
        code: 'dfp-video-div',
        sizes: [[640, 480]],
        mediaTypes: {
          video: {
            playerSize: [[640, 480]],
            context: 'instream'
          }
        },
        bids: [{
          bidder: 'rise',
          params: {
            org: '1234567890abcdef12345678', // Required
            floorPrice: 2.00, // Optional
            placementId: '12345678', // Optional
            testMode: false, // Optional,
            rtbDomain: "www.test.com" //Optional
          }
        }]
      }
   ];