Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Digital Bid Adapter Documentation: MultiBid Support #5895

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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