diff --git a/modules/zedoBidAdapter.md b/modules/zedoBidAdapter.md index 6555a1e6506..1ea35585a64 100644 --- a/modules/zedoBidAdapter.md +++ b/modules/zedoBidAdapter.md @@ -8,10 +8,16 @@ Maintainer: prebidsupport@zedo.com Module that connects to ZEDO's demand sources. +ZEDO supports both display and video. For video integration, ZEDO returns content as vastXML and requires the publisher to define the cache url in config passed to Prebid for it to be valid in the auction +ZEDO has its own renderer and will render the video unit if not defined in the config. + + # Test Parameters +# display ``` + var adUnits = [ { code: 'banner-ad-div', @@ -28,3 +34,29 @@ For video integration, ZEDO returns content as vastXML and requires the publishe } ]; ``` +# video +``` + + var adUnit1 = [ + { + code: 'videoAdUnit', + mediaTypes: + { + video: + { + context: 'outstream', + playerSize: [640, 480] + } + }, + bids: [ + { + bidder: 'zedo', + params: + { + channelCode: 2264004593, + dimId: 85 + } + } + ] + }]; +``` \ No newline at end of file