Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 15 additions & 17 deletions dev-docs/bidders/improvedigital.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -47,22 +46,6 @@ pbjs.setConfig({
});
```

<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.

```javascript
pbjs.setConfig({
improvedigital: {
rendererConfig: {
// Global config object provided by Improve Digital
}
}
});
```

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

#### Extend Mode
Expand All @@ -81,6 +64,21 @@ pbjs.setConfig({
});
```

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

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

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

### Examples
Expand Down