Skip to content

Commit

Permalink
Update NextRoll BidAdapter docs for v5 (#3286)
Browse files Browse the repository at this point in the history
* Update NextRoll BidAdapter docs for v5

* Add comment to `floors` section in example
  • Loading branch information
abijr authored Oct 6, 2021
1 parent 90ae17c commit d77d1fd
Showing 1 changed file with 12 additions and 2 deletions.
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

0 comments on commit d77d1fd

Please sign in to comment.