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 rise adapter bidder params #3949

Merged
merged 18 commits into from
Aug 17, 2022
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
7 changes: 5 additions & 2 deletions dev-docs/bidders/rise.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ The Rise adapter requires setup and approval. Please reach out to prebid-rise-en
| `floorPrice` | optional | Number | Minimum price in USD. <br/><br/> **WARNING:**<br/> Misuse of this parameter can impact revenue | 2.00
| `placementId` | optional | String | A unique placement identifier | "12345678"
| `testMode` | optional | Boolean | This activates the test mode | false
| `rtbDomain` | optional | String | Sets the seller end point | "www.test.com"

## Example
```javascript
Expand All @@ -48,7 +49,8 @@ var adUnits = [{
org: '56f91cd4d3e3660002000033', // Required
floorPrice: 0.05, // Optional
placementId: '12345678', // Optional
testMode: false // Optional
testMode: false // Optional,
rtbDomain: 'www.test.com' //Optional
}
}]
},
Expand All @@ -71,7 +73,8 @@ var adUnits = [{
org: '56f91cd4d3e3660002000033', // Required
floorPrice: 5.00, // Optional
placementId: '12345678', // Optional
testMode: false // Optional
testMode: false // Optional,
rtbDomain: 'www.test.com' //Optional
}
}]
}
Expand Down