From 8109f0c55ca174dc4c8abd98703a88f0eaf17ae6 Mon Sep 17 00:00:00 2001 From: v0idxyz <58184010+v0idxyz@users.noreply.github.com> Date: Thu, 29 Jan 2026 13:42:59 -0500 Subject: [PATCH 1/6] Add Revantage Bidder Adapter documentation Added documentation for the Revantage Bidder Adapter, including registration, bid parameters, configuration for banner and video ads, user syncing, privacy support, and price floors. --- dev-docs/bidders/revantage.md | 258 ++++++++++++++++++++++++++++++++++ 1 file changed, 258 insertions(+) create mode 100644 dev-docs/bidders/revantage.md diff --git a/dev-docs/bidders/revantage.md b/dev-docs/bidders/revantage.md new file mode 100644 index 0000000000..b3a73e04b0 --- /dev/null +++ b/dev-docs/bidders/revantage.md @@ -0,0 +1,258 @@ +--- +layout: bidder +title: Revantage +description: Prebid Revantage Bidder Adapter +biddercode: revantage +tcfeu_supported: true +gvl_id: none +usp_supported: true +gpp_supported: true +coppa_supported: false +schain_supported: true +dchain_supported: false +userId: all +media_types: banner, video +safeframes_ok: true +deals_supported: true +floors_supported: true +fpd_supported: true +pbjs: true +pbs: false +prebid_member: false +multiformat_supported: will-bid-on-one +ortb_blocking_supported: false +privacy_sandbox: no +sideload_disabled: false +--- + +### Registration + +To use the Revantage adapter, you need to register for an account and obtain a Feed ID. Please contact [adops@revantage.io](mailto:adops@revantage.io) to get started. + +### Bid Params + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|---------------|----------|-----------------------------------------------|----------------------|----------| +| `feedId` | required | Unique identifier for your feed configuration | `'abc123xyz'` | `string` | + +### Banner Configuration + +Revantage supports standard banner ad units. The adapter will automatically use the sizes defined in your ad unit configuration. +```javascript +var adUnits = [ + { + code: 'banner-div', + mediaTypes: { + banner: { + sizes: [[300, 250], [300, 600], [728, 90]] + } + }, + bids: [ + { + bidder: 'revantage', + params: { + feedId: 'your-feed-id' + } + } + ] + } +]; +``` + +### Video Configuration + +Revantage supports instream and outstream video. The following video parameters are supported: + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|------------------|-------------|--------------------------------------------------|--------------------------|-----------------| +| `playerSize` | required | Video player dimensions | `[[640, 480]]` | `array` | +| `mimes` | recommended | Supported video MIME types | `['video/mp4']` | `array` | +| `protocols` | recommended | Supported VAST protocols | `[2, 3, 5, 6]` | `array` | +| `api` | optional | Supported API frameworks | `[1, 2]` | `array` | +| `placement` | optional | Video placement type (1=instream, 2=outstream) | `1` | `int` | +| `minduration` | optional | Minimum video duration in seconds | `5` | `int` | +| `maxduration` | optional | Maximum video duration in seconds | `30` | `int` | +| `skip` | optional | Whether video is skippable (0=no, 1=yes) | `1` | `int` | +| `skipmin` | optional | Minimum duration before skip is allowed | `5` | `int` | +| `skipafter` | optional | Seconds until skip button appears | `5` | `int` | +| `startdelay` | optional | Start delay (0=pre-roll, -1=mid-roll, -2=post) | `0` | `int` | +| `playbackmethod` | optional | Playback methods | `[1, 2]` | `array` | +| `linearity` | optional | Linearity (1=linear, 2=non-linear) | `1` | `int` | + +#### Video Example +```javascript +var adUnits = [ + { + code: 'video-div', + mediaTypes: { + video: { + playerSize: [[640, 480]], + context: 'instream', + mimes: ['video/mp4', 'video/webm'], + protocols: [2, 3, 5, 6], + api: [1, 2], + placement: 1, + minduration: 5, + maxduration: 30, + skip: 1, + skipmin: 5, + skipafter: 5 + } + }, + bids: [ + { + bidder: 'revantage', + params: { + feedId: 'your-feed-id' + } + } + ] + } +]; +``` + +### User Syncing + +Revantage supports both iframe and pixel-based user syncing. Enable user syncing in your Prebid.js configuration: +```javascript +pbjs.setConfig({ + userSync: { + filterSettings: { + iframe: { + bidders: ['revantage'], + filter: 'include' + }, + image: { + bidders: ['revantage'], + filter: 'include' + } + }, + syncsPerBidder: 1, + syncDelay: 3000 + } +}); +``` + +### Privacy Support + +Revantage fully supports the following privacy frameworks: + +- **GDPR (TCF 2.0)**: The adapter reads consent data from the `gdprConsent` object and passes it to the bidding endpoint. +- **US Privacy (CCPA)**: The adapter reads the USP consent string and includes it in bid requests. +- **GPP**: Global Privacy Platform consent strings and applicable sections are supported. + +### First Party Data + +Revantage supports First Party Data via the standard `ortb2` configuration: +```javascript +pbjs.setConfig({ + ortb2: { + site: { + name: 'Example Site', + domain: 'example.com', + cat: ['IAB1'], + content: { + language: 'en' + } + }, + user: { + data: [ + { + name: 'example.com', + ext: { + segtax: 600 + }, + segment: [ + { id: '1' }, + { id: '2' } + ] + } + ] + } + } +}); +``` + +### Price Floors + +Revantage supports the [Prebid.js Price Floors Module](https://docs.prebid.org/dev-docs/modules/floors.html). Configure floors as usual and the adapter will include floor data in bid requests. +```javascript +pbjs.setConfig({ + floors: { + enforcement: { + floorDeals: true + }, + data: { + currency: 'USD', + schema: { + fields: ['mediaType', 'size'] + }, + values: { + 'banner|300x250': 0.50, + 'banner|728x90': 0.75, + 'video|640x480': 2.00 + } + } + } +}); +``` + +### Supply Chain (schain) + +Revantage passes supply chain information to demand partners. Configure schain in your Prebid.js setup: +```javascript +pbjs.setConfig({ + schain: { + validation: 'relaxed', + config: { + ver: '1.0', + complete: 1, + nodes: [ + { + asi: 'yoursite.com', + sid: 'your-seller-id', + hp: 1 + } + ] + } + } +}); +``` + +### User ID Modules + +Revantage supports all Prebid.js User ID modules. User IDs are automatically passed in the bid request when available. + +### Test Parameters + +Use these parameters to test the Revantage adapter: +```javascript +var adUnits = [ + { + code: 'test-banner', + mediaTypes: { + banner: { + sizes: [[300, 250]] + } + }, + bids: [ + { + bidder: 'revantage', + params: { + feedId: 'test-feed-123' + } + } + ] + } +]; +``` + +### Notes + +- All bid requests are sent to `https://bid.revantage.io/bid` +- User sync requests are sent to `https://sync.revantage.io/sync` +- The adapter uses first-price auction (`at=1`) +- Currency is USD by default +- Win notifications are handled via the `burl` parameter in bid responses From b7b416c5f2bc0bbbbe8a2486d27fc8479d142caf Mon Sep 17 00:00:00 2001 From: v0idxyz <58184010+v0idxyz@users.noreply.github.com> Date: Thu, 29 Jan 2026 13:53:07 -0500 Subject: [PATCH 2/6] Remove notes about bid requests and sync URLs Removed notes section detailing bid requests and notifications. --- dev-docs/bidders/revantage.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/dev-docs/bidders/revantage.md b/dev-docs/bidders/revantage.md index b3a73e04b0..bba44d5234 100644 --- a/dev-docs/bidders/revantage.md +++ b/dev-docs/bidders/revantage.md @@ -248,11 +248,3 @@ var adUnits = [ } ]; ``` - -### Notes - -- All bid requests are sent to `https://bid.revantage.io/bid` -- User sync requests are sent to `https://sync.revantage.io/sync` -- The adapter uses first-price auction (`at=1`) -- Currency is USD by default -- Win notifications are handled via the `burl` parameter in bid responses From 057672ab65cb13486d0278c7290698459b1e0153 Mon Sep 17 00:00:00 2001 From: v0idxyz <58184010+v0idxyz@users.noreply.github.com> Date: Fri, 6 Feb 2026 10:49:34 -0500 Subject: [PATCH 3/6] Update dev-docs/bidders/revantage.md Co-authored-by: Muki Seiler --- dev-docs/bidders/revantage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/revantage.md b/dev-docs/bidders/revantage.md index bba44d5234..1e27efa589 100644 --- a/dev-docs/bidders/revantage.md +++ b/dev-docs/bidders/revantage.md @@ -6,7 +6,7 @@ biddercode: revantage tcfeu_supported: true gvl_id: none usp_supported: true -gpp_supported: true +gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp coppa_supported: false schain_supported: true dchain_supported: false From 445e1b1d3b103454efe04c57929c1adbcc535670 Mon Sep 17 00:00:00 2001 From: v0idxyz <58184010+v0idxyz@users.noreply.github.com> Date: Fri, 6 Feb 2026 10:49:53 -0500 Subject: [PATCH 4/6] Update dev-docs/bidders/revantage.md Co-authored-by: Muki Seiler --- dev-docs/bidders/revantage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/revantage.md b/dev-docs/bidders/revantage.md index 1e27efa589..3f0f799163 100644 --- a/dev-docs/bidders/revantage.md +++ b/dev-docs/bidders/revantage.md @@ -177,7 +177,7 @@ pbjs.setConfig({ ### Price Floors -Revantage supports the [Prebid.js Price Floors Module](https://docs.prebid.org/dev-docs/modules/floors.html). Configure floors as usual and the adapter will include floor data in bid requests. +Revantage supports the [Prebid.js Price Floors Module](/dev-docs/modules/floors.html). Configure floors as usual and the adapter will include floor data in bid requests. ```javascript pbjs.setConfig({ floors: { From 767e05430642e9ea8b1a5a8b38a53474ac873c13 Mon Sep 17 00:00:00 2001 From: v0idxyz <58184010+v0idxyz@users.noreply.github.com> Date: Fri, 6 Feb 2026 10:51:20 -0500 Subject: [PATCH 5/6] Change tcfeu_supported to false for Revantage --- dev-docs/bidders/revantage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/revantage.md b/dev-docs/bidders/revantage.md index 3f0f799163..7ecf34420f 100644 --- a/dev-docs/bidders/revantage.md +++ b/dev-docs/bidders/revantage.md @@ -3,7 +3,7 @@ layout: bidder title: Revantage description: Prebid Revantage Bidder Adapter biddercode: revantage -tcfeu_supported: true +tcfeu_supported: false gvl_id: none usp_supported: true gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp From 1eeff2c17a5064856da08144d2eced9d5be89411 Mon Sep 17 00:00:00 2001 From: v0idxyz <58184010+v0idxyz@users.noreply.github.com> Date: Fri, 6 Feb 2026 10:54:04 -0500 Subject: [PATCH 6/6] Update Revantage documentation with code examples --- dev-docs/bidders/revantage.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev-docs/bidders/revantage.md b/dev-docs/bidders/revantage.md index 7ecf34420f..3067a476ac 100644 --- a/dev-docs/bidders/revantage.md +++ b/dev-docs/bidders/revantage.md @@ -39,6 +39,7 @@ To use the Revantage adapter, you need to register for an account and obtain a F ### Banner Configuration Revantage supports standard banner ad units. The adapter will automatically use the sizes defined in your ad unit configuration. + ```javascript var adUnits = [ { @@ -82,6 +83,7 @@ Revantage supports instream and outstream video. The following video parameters | `linearity` | optional | Linearity (1=linear, 2=non-linear) | `1` | `int` | #### Video Example + ```javascript var adUnits = [ { @@ -116,6 +118,7 @@ var adUnits = [ ### User Syncing Revantage supports both iframe and pixel-based user syncing. Enable user syncing in your Prebid.js configuration: + ```javascript pbjs.setConfig({ userSync: { @@ -146,6 +149,7 @@ Revantage fully supports the following privacy frameworks: ### First Party Data Revantage supports First Party Data via the standard `ortb2` configuration: + ```javascript pbjs.setConfig({ ortb2: { @@ -178,6 +182,7 @@ pbjs.setConfig({ ### Price Floors Revantage supports the [Prebid.js Price Floors Module](/dev-docs/modules/floors.html). Configure floors as usual and the adapter will include floor data in bid requests. + ```javascript pbjs.setConfig({ floors: { @@ -202,6 +207,7 @@ pbjs.setConfig({ ### Supply Chain (schain) Revantage passes supply chain information to demand partners. Configure schain in your Prebid.js setup: + ```javascript pbjs.setConfig({ schain: { @@ -228,6 +234,7 @@ Revantage supports all Prebid.js User ID modules. User IDs are automatically pas ### Test Parameters Use these parameters to test the Revantage adapter: + ```javascript var adUnits = [ {