Skip to content

Commit

Permalink
Add documentation for Improve Digital Bid Adapter's newly added suppo…
Browse files Browse the repository at this point in the history
…rt for MultiBid and removed a previously deprecated feature from the documentation. (#5895)
  • Loading branch information
lyubomirshishkov authored Feb 24, 2025
1 parent 5264c3a commit 8964143
Showing 1 changed file with 15 additions and 17 deletions.
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

0 comments on commit 8964143

Please sign in to comment.