Skip to content
Closed
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
19 changes: 10 additions & 9 deletions dev-docs/bidders/sovrn.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ sidebarType: 1
### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|------------|----------|----------------------|------------|----------|
| `tagid` | required | The sovrn Ad Tag ID | `'315045'` | `string` |
| `bidfloor` | optional | Bid floor in dollars | `'0.04'` | `string` |
| Name | Scope | Description | Example | Type |
|--------------|----------|----------------------|------------------|----------|
| `tagid` | required | The sovrn Ad Tag ID | `'315045'` | `string` |
| `bidfloor` | optional | Bid floor in dollars | `'0.04'` | `string` |
| `adunitcode` | optional | Ad unit identifier | `'example_code'` | `string` |

Bid Params for video ads. These params should be added to `mediatype.video`.

Expand Down Expand Up @@ -55,7 +56,7 @@ Bid Params for video ads. These params should be added to `mediatype.video`.

### Note

[Protocols list](#epsilon-protocols)
[Protocols list](https://docs.prebid.org/dev-docs/bidders/epsilon.html#protocols)

#### MIME types

Expand Down Expand Up @@ -125,7 +126,7 @@ Source: [OpenRTB scpecification](https://www.iab.com/wp-content/uploads/2016/03/

#### Video instream adUnit

```
```javascript
var instreamAdUnit = {
code: 'instream-div',
sizes: [[640, 480]],
Expand All @@ -148,7 +149,7 @@ Source: [OpenRTB scpecification](https://www.iab.com/wp-content/uploads/2016/03/

#### Video outstream adUnit

```
```javascript
var outstreamAdUnit = {
code: 'outstream-div',
sizes: [[640, 480]],
Expand All @@ -166,12 +167,12 @@ Source: [OpenRTB scpecification](https://www.iab.com/wp-content/uploads/2016/03/
tagid: '315045'
}
}]
},
}
```

#### Banner adUnit

```
```javascript
var bannerAdUnit = {
code: 'banner-div',
sizes: [[300, 250]],
Expand Down