From 93ac7f5a2b0c85ab30915707c16710f37eb35c2f Mon Sep 17 00:00:00 2001 From: pritishmd-talentica Date: Mon, 19 May 2025 10:52:59 +0530 Subject: [PATCH 1/5] RM-880 : Wrote a dev documentation for new bidder adapter for risemedia --- dev-docs/bidders/risemediatech.md | 55 +++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 dev-docs/bidders/risemediatech.md diff --git a/dev-docs/bidders/risemediatech.md b/dev-docs/bidders/risemediatech.md new file mode 100644 index 0000000000..1d3084387b --- /dev/null +++ b/dev-docs/bidders/risemediatech.md @@ -0,0 +1,55 @@ +--- +layout: bidder +title: RiseMediaTech +description: Prebid.js bidder adapter for RiseMediaTech +biddercode: risemediatech +media_types: + - banner + - video +gdpr_supported: true +usp_supported: true +gpp_supported: true +user_sync: + iframe: true + image: true +schain_supported: true +pbjs: true +pbs: true +--- + +# Overview + +RiseMediaTech is a digital advertising platform that supports banner and video ads through its Prebid.js adapter. The adapter supports GDPR, CCPA (USP), and GPP regulations and uses OpenRTB standards for request and response formatting. + +# Bid Params + +| Name | Scope | Type | Description | Example | +|--------------|--------------------|------------------|--------------------------------------------|-------------------------| +| `publisherId`| required | string | Unique identifier for the publisher | `'1234'` | +| `mimes` | required for video | array of strings | Supported MIME types for video creatives | `['video/mp4']` | +| `minduration`| optional | number | Minimum video duration (in seconds) | `5` | +| `maxduration`| optional | number | Maximum video duration (in seconds) | `30` | +| `startdelay` | optional | number | Start delay of the video ad | `0` | +| `maxseq` | optional | number | Maximum number of ads in a pod | `1` | +| `poddur` | optional | number | Total duration of the pod (in seconds) | `60` | +| `protocols` | optional | array of numbers | Supported video protocols | `[2, 3, 5, 6]` | + +# Example Ad Units + +### Banner + +```javascript +var adUnits = [{ + code: 'banner-div', + mediaTypes: { + banner: { + sizes: [[300, 250], [728, 90]] + } + }, + bids: [{ + bidder: 'risemediatech', + params: { + publisherId: '1234' + } + }] +}]; From 70f7323e2be6b4ae157e0e0c918c4995a5b897c3 Mon Sep 17 00:00:00 2001 From: pritishmd-talentica Date: Thu, 26 Jun 2025 09:47:29 +0530 Subject: [PATCH 2/5] Modified the docs --- dev-docs/bidders/risemediatech.md | 30 +++++++----------------------- 1 file changed, 7 insertions(+), 23 deletions(-) diff --git a/dev-docs/bidders/risemediatech.md b/dev-docs/bidders/risemediatech.md index 1d3084387b..81829cfd3b 100644 --- a/dev-docs/bidders/risemediatech.md +++ b/dev-docs/bidders/risemediatech.md @@ -10,8 +10,8 @@ gdpr_supported: true usp_supported: true gpp_supported: true user_sync: - iframe: true - image: true + iframe: false + image: false schain_supported: true pbjs: true pbs: true @@ -19,13 +19,16 @@ pbs: true # Overview -RiseMediaTech is a digital advertising platform that supports banner and video ads through its Prebid.js adapter. The adapter supports GDPR, CCPA (USP), and GPP regulations and uses OpenRTB standards for request and response formatting. +RiseMediaTech is a digital advertising platform that supports banner and video ads through its Prebid.js adapter. The adapter uses OpenRTB standards for request and response formatting. # Bid Params | Name | Scope | Type | Description | Example | |--------------|--------------------|------------------|--------------------------------------------|-------------------------| -| `publisherId`| required | string | Unique identifier for the publisher | `'1234'` | +| `publisherId`| optional | string | Unique identifier for the publisher | `'1234'` +| `placementId`| optional | string | Placement ID | `'1234'` | +| `bidFloor` | optional | string | Bid Floor | +`'0.01'` | `mimes` | required for video | array of strings | Supported MIME types for video creatives | `['video/mp4']` | | `minduration`| optional | number | Minimum video duration (in seconds) | `5` | | `maxduration`| optional | number | Maximum video duration (in seconds) | `30` | @@ -34,22 +37,3 @@ RiseMediaTech is a digital advertising platform that supports banner and video a | `poddur` | optional | number | Total duration of the pod (in seconds) | `60` | | `protocols` | optional | array of numbers | Supported video protocols | `[2, 3, 5, 6]` | -# Example Ad Units - -### Banner - -```javascript -var adUnits = [{ - code: 'banner-div', - mediaTypes: { - banner: { - sizes: [[300, 250], [728, 90]] - } - }, - bids: [{ - bidder: 'risemediatech', - params: { - publisherId: '1234' - } - }] -}]; From 8fd126120c29884e9e9825b73dfc9bc27f1e0bf4 Mon Sep 17 00:00:00 2001 From: pritishmd-talentica Date: Thu, 26 Jun 2025 09:50:59 +0530 Subject: [PATCH 3/5] Minor changes --- dev-docs/bidders/risemediatech.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dev-docs/bidders/risemediatech.md b/dev-docs/bidders/risemediatech.md index 81829cfd3b..ed27af1b60 100644 --- a/dev-docs/bidders/risemediatech.md +++ b/dev-docs/bidders/risemediatech.md @@ -25,10 +25,9 @@ RiseMediaTech is a digital advertising platform that supports banner and video a | Name | Scope | Type | Description | Example | |--------------|--------------------|------------------|--------------------------------------------|-------------------------| -| `publisherId`| optional | string | Unique identifier for the publisher | `'1234'` +| `publisherId`| optional | string | Unique identifier for the publisher | `'p-1234'` | `placementId`| optional | string | Placement ID | `'1234'` | -| `bidFloor` | optional | string | Bid Floor | -`'0.01'` +| `bidFloor` | optional | string | Bid Floor | `'0.01'` | `mimes` | required for video | array of strings | Supported MIME types for video creatives | `['video/mp4']` | | `minduration`| optional | number | Minimum video duration (in seconds) | `5` | | `maxduration`| optional | number | Maximum video duration (in seconds) | `30` | From 33accce3678362101b5107410033921d1efb49ec Mon Sep 17 00:00:00 2001 From: pritishmd-talentica Date: Wed, 9 Jul 2025 13:21:18 +0530 Subject: [PATCH 4/5] Minor modifications --- dev-docs/bidders/risemediatech.md | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/dev-docs/bidders/risemediatech.md b/dev-docs/bidders/risemediatech.md index ed27af1b60..79d177ed21 100644 --- a/dev-docs/bidders/risemediatech.md +++ b/dev-docs/bidders/risemediatech.md @@ -24,15 +24,7 @@ RiseMediaTech is a digital advertising platform that supports banner and video a # Bid Params | Name | Scope | Type | Description | Example | -|--------------|--------------------|------------------|--------------------------------------------|-------------------------| -| `publisherId`| optional | string | Unique identifier for the publisher | `'p-1234'` -| `placementId`| optional | string | Placement ID | `'1234'` | +|--------------|--------------------|------------------|--------------------------------------------|-------------------------| | `bidFloor` | optional | string | Bid Floor | `'0.01'` -| `mimes` | required for video | array of strings | Supported MIME types for video creatives | `['video/mp4']` | -| `minduration`| optional | number | Minimum video duration (in seconds) | `5` | -| `maxduration`| optional | number | Maximum video duration (in seconds) | `30` | -| `startdelay` | optional | number | Start delay of the video ad | `0` | -| `maxseq` | optional | number | Maximum number of ads in a pod | `1` | -| `poddur` | optional | number | Total duration of the pod (in seconds) | `60` | -| `protocols` | optional | array of numbers | Supported video protocols | `[2, 3, 5, 6]` | +| `testMode` | optional | string | Parameter to indicate prebid test mode | `'0'` From 6ec6ea53464dda33d8ea32ec9dfbf1f38d689b19 Mon Sep 17 00:00:00 2001 From: pritishmd-talentica Date: Wed, 9 Jul 2025 20:38:26 +0530 Subject: [PATCH 5/5] Minor changes --- dev-docs/bidders/risemediatech.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/risemediatech.md b/dev-docs/bidders/risemediatech.md index 79d177ed21..48883eb73d 100644 --- a/dev-docs/bidders/risemediatech.md +++ b/dev-docs/bidders/risemediatech.md @@ -26,5 +26,5 @@ RiseMediaTech is a digital advertising platform that supports banner and video a | Name | Scope | Type | Description | Example | |--------------|--------------------|------------------|--------------------------------------------|-------------------------| | `bidFloor` | optional | string | Bid Floor | `'0.01'` -| `testMode` | optional | string | Parameter to indicate prebid test mode | `'0'` +| `testMode` | optional | string | Parameter to indicate prebid test mode | `'1'`