Skip to content

Commit

Permalink
Improve Digital adapter: Extend mode (#1) (prebid#3782)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbartek25 committed May 18, 2022
1 parent fc80b43 commit c927106
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions dev-docs/bidders/improvedigital.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ pbs_app_supported: true
| `keyValues` | optional | Contains one or more key-value pairings for key-value targeting | `{ testKey1: ['testValueA'], testKey2: ['testValueB', 'testValueC'] }` | `object` |
| `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` |
| `video` | optional | Object with video parameters. See the [Video params](#improvedigital-video) section below for details. | | `object` |

Expand Down Expand Up @@ -69,6 +70,23 @@ pbjs.setConfig({
});
```

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

#### Extend Mode

Improve Digital Extend mode provides publishers with access to additional demand from other SSPs. Before enabling please contact our team for more information.
The Extend mode can be enabled:
* per ad unit via the `extend` [bid param](#improvedigital-params)
* for all ad units via `setConfig()`:

```
pbjs.setConfig({
improvedigital: {
extend: true
}
});
```

<a name="improvedigital-examples" />

### Examples
Expand Down

0 comments on commit c927106

Please sign in to comment.