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 NextRoll BidAdapter docs for v5 #3286

Merged
merged 2 commits into from
Oct 6, 2021
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
14 changes: 12 additions & 2 deletions dev-docs/bidders/nextroll.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ media_types: display, native
gdpr_supported: false
usp_supported: true
prebid_member: true
pbjs_version_notes: not in 5.x
---

### Bid Params
Expand All @@ -19,7 +18,7 @@ pbjs_version_notes: not in 5.x
| `sellerId` | required | The seller ID from NextRoll.Please reach out your NextRoll representative for more details. | `'541459'` | `string` |
| `publisherId` | optional | The publisher ID from NextRoll.Please reach out your NextRoll representative for more details. | `'956812'` | `string` |
| `zoneId` | optional | Descriptive or unique identifier for the ad position | `'main-banner-505/600x160'` | `string` |
| `bidfloor` | optional | Per ad-unit bid floor | `2.3` | `number` |
| `bidfloor` | optional | Per ad-unit bid floor, used if the floor module is not available | `2.3` | `number` |

#### Example of Banner Ad-unit
```
Expand All @@ -29,6 +28,17 @@ var adUnits = [
mediaTypes: {
banner: {sizes: [[300, 250], [160, 600]]}
},
// If floors module is enabled
floors: {
currency: "USD",
schema: {
delimiter: "|",
fields: ["mediaType", "size"]
},
values: {
"*|*": 2.0
}
},
bids: [{
bidder: 'nextroll',
params: {
Expand Down