Skip to content

Latest commit

 

History

History
59 lines (51 loc) · 1002 Bytes

prismaBidAdapter.md

File metadata and controls

59 lines (51 loc) · 1002 Bytes

Overview

Module Name:  Prisma Bid Adapter
Module Type:  Bidder Adapter
Maintainer: [email protected]

Description

Connects to Prisma network for bids.

To use us as a bidder you must have an account and an active "tagId" on our platform.

Test Parameters

Web

Display

var adUnits = [
   // Banner adUnit
   {
      code: 'banner-div',
      mediaTypes: {
        banner: {
          sizes: [[300, 250], [300,600]]
        }
      },
      bids: [{
         bidder: 'prisma',
         params: {
            account: '1067',
            tagId: 'luvxjvgn'
         }
       }]
   },
];

Video Instream

    var videoAdUnit = {
        code: 'video1',
        mediaTypes: {
            video: {
                playerSize: [640, 480],
                context: 'instream'
            }
        },
        bids: [{
            bidder: 'prisma',
            params: {
               account: '1067',
               tagId: 'luvxjvgn'
            }
        }]
    };