From b95366db37a096465f3d7ef2a5c993771665c3be Mon Sep 17 00:00:00 2001
From: Lyubomir Shishkov <61063794+lyubomirshishkov@users.noreply.github.com>
Date: Tue, 18 Feb 2025 21:06:41 +0200
Subject: [PATCH] Add documentation for Improve Digital Bid Adapter's newly
added support for MultiBid and removed a previously deprecated feature from
the documentation.
---
dev-docs/bidders/improvedigital.md | 32 ++++++++++++++----------------
1 file changed, 15 insertions(+), 17 deletions(-)
diff --git a/dev-docs/bidders/improvedigital.md b/dev-docs/bidders/improvedigital.md
index 893e98b235..b4bbd09431 100644
--- a/dev-docs/bidders/improvedigital.md
+++ b/dev-docs/bidders/improvedigital.md
@@ -31,7 +31,6 @@ sidebarType: 1
| `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` |
| `extend` | optional | See the [Extend mode section](#improvedigital-extend) | `true` | `boolean` |
-| `rendererConfig` | optional | Configuration object for JS renderer of the RAZR creatives. Provided by Improve Digital. | `{ key1: value1 }` | `object` |
### Configuration
@@ -47,22 +46,6 @@ pbjs.setConfig({
});
```
-
-
-#### Renderer Config
-
-Global configuration for the special creative format renderer. Please use [rendererConfig bid param](#improvedigital-params) for ad slot specific configuration.
-
-```javascript
-pbjs.setConfig({
- improvedigital: {
- rendererConfig: {
- // Global config object provided by Improve Digital
- }
- }
-});
-```
-
#### Extend Mode
@@ -81,6 +64,21 @@ pbjs.setConfig({
});
```
+
+
+#### MultiBid
+
+Improve Digital supports Prebid's MultiBid feature. More on enabling MultiBid can be found here: [MultiBid](https://docs.prebid.org/dev-docs/modules/multibid.html). An example of how to enable MultiBid for Improve Digital:
+
+```javascript
+pbjs.setConfig({
+ multibid: [{
+ bidder: "improvedigital",
+ maxBids: 3,
+ }]
+});
+```
+
### Examples