Skip to content

Commit c927106

Browse files
authored
Improve Digital adapter: Extend mode (#1) (prebid#3782)
1 parent fc80b43 commit c927106

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

dev-docs/bidders/improvedigital.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ pbs_app_supported: true
2626
| `keyValues` | optional | Contains one or more key-value pairings for key-value targeting | `{ testKey1: ['testValueA'], testKey2: ['testValueB', 'testValueC'] }` | `object` |
2727
| `bidFloor` | optional | Bid floor price | `0.01` | `float` |
2828
| `bidFloorCur` | optional | Bid floor price currency. Supported values: USD (default), EUR, GBP, AUD, DKK, SEK, CZK, CHF, NOK | `'USD'` | `string` |
29+
| `extend` | optional | See the [Extend mode section](#improvedigital-extend) | `true` | `boolean` |
2930
| `rendererConfig` | optional | Configuration object for JS renderer of the RAZR creatives. Provided by Improve Digital. | `{ key1: value1 }` | `object` |
3031
| `video` | optional | Object with video parameters. See the [Video params](#improvedigital-video) section below for details. | | `object` |
3132

@@ -69,6 +70,23 @@ pbjs.setConfig({
6970
});
7071
```
7172

73+
<a name="improvedigital-extend"></a>
74+
75+
#### Extend Mode
76+
77+
Improve Digital Extend mode provides publishers with access to additional demand from other SSPs. Before enabling please contact our team for more information.
78+
The Extend mode can be enabled:
79+
* per ad unit via the `extend` [bid param](#improvedigital-params)
80+
* for all ad units via `setConfig()`:
81+
82+
```
83+
pbjs.setConfig({
84+
improvedigital: {
85+
extend: true
86+
}
87+
});
88+
```
89+
7290
<a name="improvedigital-examples" />
7391

7492
### Examples

0 commit comments

Comments
 (0)