Skip to content

Commit c8d5100

Browse files
Merge pull request #2 from ImproveDigital/improvedigital-multibid-documentation
Add documentation for Improve Digital Bid Adapter's newly added support for MultiBid
2 parents 89f92a5 + b95366d commit c8d5100

File tree

1 file changed

+15
-17
lines changed

1 file changed

+15
-17
lines changed

dev-docs/bidders/improvedigital.md

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ sidebarType: 1
3131
| `bidFloor` | optional | Bid floor price | `0.01` | `float` |
3232
| `bidFloorCur` | optional | Bid floor price currency. Supported values: USD (default), EUR, GBP, AUD, DKK, SEK, CZK, CHF, NOK | `'USD'` | `string` |
3333
| `extend` | optional | See the [Extend mode section](#improvedigital-extend) | `true` | `boolean` |
34-
| `rendererConfig` | optional | Configuration object for JS renderer of the RAZR creatives. Provided by Improve Digital. | `{ key1: value1 }` | `object` |
3534

3635
### Configuration
3736

@@ -47,22 +46,6 @@ pbjs.setConfig({
4746
});
4847
```
4948

50-
<a name="improvedigital-renderer"></a>
51-
52-
#### Renderer Config
53-
54-
Global configuration for the special creative format renderer. Please use [rendererConfig bid param](#improvedigital-params) for ad slot specific configuration.
55-
56-
```javascript
57-
pbjs.setConfig({
58-
improvedigital: {
59-
rendererConfig: {
60-
// Global config object provided by Improve Digital
61-
}
62-
}
63-
});
64-
```
65-
6649
<a name="improvedigital-extend"></a>
6750

6851
#### Extend Mode
@@ -81,6 +64,21 @@ pbjs.setConfig({
8164
});
8265
```
8366

67+
<a name="improvedigital-multibid"></a>
68+
69+
#### MultiBid
70+
71+
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:
72+
73+
```javascript
74+
pbjs.setConfig({
75+
multibid: [{
76+
bidder: "improvedigital",
77+
maxBids: 3,
78+
}]
79+
});
80+
```
81+
8482
<a name="improvedigital-examples"></a>
8583

8684
### Examples

0 commit comments

Comments
 (0)