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

Update vertamedia.md #567

Merged
merged 1 commit into from
Jan 29, 2018
Merged
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
67 changes: 63 additions & 4 deletions dev-docs/bidders/vertamedia.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,70 @@ biddercode_longer_than_12: false
prebid_1_0_supported : true
---

### bid params
### Bid params

{: .table .table-bordered .table-striped }


| Name | Scope | Description | Example |
| :--- | :---- | :---------- | :------ |
| `aid`| required | | |
| Name | Scope | Description | Example |
| :--- | :---- | :---------- | :------ |
| `aid`| required | The source ID from Vertamedia.| 324758 |


### Description
Get access to multiple demand partners across VertaMedia AdExchange and maximize your yield with VertaMedia header bidding adapter.

VertaMedia header bidding adapter connects with VertaMedia demand sources in order to fetch bids.
This adapter provides a solution for accessing Video demand and display demand

### Test Parameters
```
var adUnits = [

// Video instream adUnit
{
code: 'div-test-div',
sizes: [[640, 480]],
mediaTypes: {
video: {
context: 'instream'
}
},
bids: [{
bidder: 'vertamedia',
params: {
aid: 332842
}
}]
},

// Video outstream adUnit
{
code: 'outstream-test-div',
sizes: [[640, 480]],
mediaTypes: {
video: {
context: 'outstream'
}
},
bids: [{
bidder: 'vertamedia',
params: {
aid: 332842
}
}]
},

// Banner adUnit
{
code: 'div-test-div',
sizes: [[300, 250]],
bids: [{
bidder: 'vertamedia',
params: {
aid: 324758
}
}]
}
];
```