From 6c1ddae08e269c7daf52a8be99d051286c98af9c Mon Sep 17 00:00:00 2001 From: noamtzu Date: Tue, 6 Jul 2021 15:24:10 +0300 Subject: [PATCH 1/5] Update Rise readme --- dev-docs/bidders/rise.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-docs/bidders/rise.md b/dev-docs/bidders/rise.md index 42c67e4c5a..df18571ba5 100644 --- a/dev-docs/bidders/rise.md +++ b/dev-docs/bidders/rise.md @@ -67,3 +67,6 @@ pbjs.setConfig({ } } }); + +### Versions +Prebid versions 5.0-5.3 are not supported From 42ded1b2274ef5a72021889fccae28e419a88991 Mon Sep 17 00:00:00 2001 From: noamtzu Date: Sun, 3 Apr 2022 18:07:21 +0300 Subject: [PATCH 2/5] fix rise doc --- dev-docs/bidders/rise.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/rise.md b/dev-docs/bidders/rise.md index fc478d4cdd..0f7eae5bd0 100644 --- a/dev-docs/bidders/rise.md +++ b/dev-docs/bidders/rise.md @@ -20,7 +20,7 @@ The Rise adapter requires setup and approval. Please reach out to prebid-rise-en ### Bid Parameters -#### Video +#### Banner, Video {: .table .table-bordered .table-striped } | Name | Scope | Type | Description | Example From dfbcceaacf8b398c5baaf5c48102be921bedd89d Mon Sep 17 00:00:00 2001 From: noamtzu Date: Thu, 28 Apr 2022 09:22:38 +0300 Subject: [PATCH 3/5] change rise docs --- dev-docs/bidders/rise.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-docs/bidders/rise.md b/dev-docs/bidders/rise.md index 0f7eae5bd0..0a29c3780c 100644 --- a/dev-docs/bidders/rise.md +++ b/dev-docs/bidders/rise.md @@ -1,7 +1,8 @@ --- layout: bidder title: Rise -description: Prebid Bidder Adaptor +description: Prebid Rise Bidder Adapter +multiformat_supported: will-bid-on-any pbjs: true biddercode: rise media_types: banner, video From 52fa9604e1fdf5965c0eb7f2c603161eb341e45c Mon Sep 17 00:00:00 2001 From: Inna Yaretsky Date: Mon, 8 Aug 2022 16:15:08 +0300 Subject: [PATCH 4/5] added rtbDomain in rise doc --- dev-docs/bidders/rise.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-docs/bidders/rise.md b/dev-docs/bidders/rise.md index b2c330cff1..efab512faf 100644 --- a/dev-docs/bidders/rise.md +++ b/dev-docs/bidders/rise.md @@ -29,6 +29,7 @@ The Rise adapter requires setup and approval. Please reach out to prebid-rise-en | `floorPrice` | optional | Number | Minimum price in USD.

**WARNING:**
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" ## Example ```javascript @@ -48,7 +49,8 @@ var adUnits = [{ org: '56f91cd4d3e3660002000033', // Required floorPrice: 0.05, // Optional placementId: '12345678', // Optional - testMode: false // Optional + testMode: false // Optional, + rtbDomain: "www.test.com" //Optional } }] }, @@ -71,7 +73,8 @@ var adUnits = [{ org: '56f91cd4d3e3660002000033', // Required floorPrice: 5.00, // Optional placementId: '12345678', // Optional - testMode: false // Optional + testMode: false // Optional, + rtbDomain: "www.test.com" //Optional } }] } From 5fb98b7c51b54e430b5900b491826acedb5b78bd Mon Sep 17 00:00:00 2001 From: Inna Yaretsky Date: Mon, 8 Aug 2022 16:18:49 +0300 Subject: [PATCH 5/5] replaced double quotes --- dev-docs/bidders/rise.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-docs/bidders/rise.md b/dev-docs/bidders/rise.md index efab512faf..e00df7eb25 100644 --- a/dev-docs/bidders/rise.md +++ b/dev-docs/bidders/rise.md @@ -50,7 +50,7 @@ var adUnits = [{ floorPrice: 0.05, // Optional placementId: '12345678', // Optional testMode: false // Optional, - rtbDomain: "www.test.com" //Optional + rtbDomain: 'www.test.com' //Optional } }] }, @@ -74,7 +74,7 @@ var adUnits = [{ floorPrice: 5.00, // Optional placementId: '12345678', // Optional testMode: false // Optional, - rtbDomain: "www.test.com" //Optional + rtbDomain: 'www.test.com' //Optional } }] }