From ec52cda75a4fdaa3aa4ddfa9faf54c4b06640842 Mon Sep 17 00:00:00 2001 From: Jozef Bartek Date: Tue, 22 Mar 2022 16:04:53 +0100 Subject: [PATCH] added renderer config --- dev-docs/bidders/improvedigital.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) mode change 100644 => 100755 dev-docs/bidders/improvedigital.md diff --git a/dev-docs/bidders/improvedigital.md b/dev-docs/bidders/improvedigital.md old mode 100644 new mode 100755 index 8cf220e975..5d622682fd --- a/dev-docs/bidders/improvedigital.md +++ b/dev-docs/bidders/improvedigital.md @@ -15,6 +15,8 @@ gvl_id: 253 pbs_app_supported: true --- + + ### Bid params {: .table .table-bordered .table-striped } @@ -24,6 +26,7 @@ pbs_app_supported: true | `keyValues` | optional | Contains one or more key-value pairings for key-value targeting | `{ testKey1: ['testValueA'], testKey2: ['testValueB', 'testValueC'] }` | `object` | | `bidFloor` | optional | Bid floor price | `0.01` | `float` | | `bidFloorCur` | optional | Bid floor price currency. Supported values: USD (default), EUR, GBP, AUD, DKK, SEK, CZK, CHF, NOK | `'USD'` | `string` | +| `rendererConfig` | optional | Configuration object for JS renderer of the RAZR creatives. Provided by Improve Digital. | `{ key1: value1 }` | `object` | | `video` | optional | Object with video parameters. See the [Video params](#improvedigital-video) section below for details. | | `object` | @@ -46,7 +49,23 @@ pbs_app_supported: true By default, the adapter doesn't send Prebid ad unit sizes to Improve Digital's ad server and the sizes defined for each placement in the Polaris platform will be used. If the ad server should only respond with creative sizes as defined in Prebid ad unit configuration, turn on `usePrebidSizes` adapter parameter like this: ``` pbjs.setConfig({ - improvedigital: {usePrebidSizes: true} + improvedigital: { usePrebidSizes: true } +}); +``` + + + +#### Renderer Config + +Global configuration for the special creative format renderer. Please use [rendererConfig bid param](#improvedigital-params) for ad slot specific configuration. + +``` +pbjs.setConfig({ + improvedigital: { + rendererConfig: { + // Global config object provided by Improve Digital + } + } }); ```