Rise
Features
Bidder Code | rise | Prebid.org Member | no |
---|---|---|---|
Media Types | display, video | GDPR Support | yes |
User IDs | none | COPPA Support | no |
"Send All Bids" Ad Server Keys
These are the bidder-specific keys that would be targeted within GAM in a Send-All-Bids scenario. GAM truncates keys to 20 characters.hb_pb_rise |
hb_bidder_rise |
hb_adid_rise |
hb_size_rise |
hb_source_rise |
hb_format_rise |
hb_cache_host_rise |
hb_cache_id_rise |
hb_uuid_rise |
"Deal ID" Ad Server Key
hb_deal_rise
Note
The Rise adapter requires setup and approval. Please reach out to prebid-rise-engage@risecodes.com to setup an Rise account.
Bid Parameters
Video
Name | Scope | Type | Description | Example |
---|---|---|---|---|
org |
required | String | Rise publisher Id provided by your Rise representative | “56f91cd4d3e3660002000033” |
floorPrice |
optional | Number | Minimum price in USD. WARNING: Misuse of this parameter can impact revenue |
2.00 |
ifa |
optional | String | The ID for advertisers (also referred to as “IDFA”) | “XXX-XXX” |
testMode |
optional | Boolean | This activates the test mode | false |
Example
var adUnits = [
{
code: 'dfp-video-div',
sizes: [[640, 480]],
mediaTypes: {
video: {
playerSize: [[640, 480]],
context: 'instream'
}
},
bids: [{
bidder: 'rise',
params: {
org: '56f91cd4d3e3660002000033', // Required
floorPrice: 5.00, // Optional
ifa: 'XXX-XXX', // Optional
testMode: false // Optional
}
}]
}
];
Configuration
Rise recommends setting UserSync by iframe for monetization.
For Prebid.js v1.15.0 and later:
pbjs.setConfig({ userSync: { filterSettings: { iframe: { bidders: ‘’, // ‘’ represents all bidders filter: ‘include’ } } } });