Skip to content

Commit

Permalink
Renderer config
Browse files Browse the repository at this point in the history
  • Loading branch information
jbartek25 committed Jan 27, 2022
1 parent 24e947f commit b304ba8
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion dev-docs/bidders/improvedigital.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ gvl_id: 253
pbs_app_supported: true
---

<a name="improvedigital-params"></a>

### Bid params

{: .table .table-bordered .table-striped }
Expand All @@ -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 special creative formats. Provided by Improve Digital. | `{ key1: value1 }` | `object` |
| `video` | optional | Object with video parameters. See the [Video params](#improvedigital-video) section below for details. | | `object` |

<a name="improvedigital-video"></a>
Expand All @@ -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 }
});
```

<a name="improvedigital-renderer"></a>

#### 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
}
}
});
```

Expand Down

0 comments on commit b304ba8

Please sign in to comment.