Skip to content
Closed
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions modules/riseBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,10 @@ function generateParameters(bid, bidderRequest) {
bidder_version: BIDDER_VERSION
};

if (params.placementId) {
requestParams.placement_id = params.placementId;
}

if (syncEnabled) {
const allowedSyncMethod = getAllowedSyncMethod(filterSettings, bidderCode);
if (allowedSyncMethod) {
Expand Down
2 changes: 2 additions & 0 deletions modules/riseBidAdapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ The adapter supports Video(instream). For the integration, Rise returns content
| `org` | required | String | Rise publisher Id provided by your Rise representative | "56f91cd4d3e3660002000033"
| `floorPrice` | optional | Number | Minimum price in USD. Misuse of this parameter can impact revenue | 2.00
| `ifa` | optional | String | The ID for advertisers (also referred to as "IDFA") | "XXX-XXX"
| `placementId` | optional | String | A unique placement identifier | "12345678"
| `testMode` | optional | Boolean | This activates the test mode | false

# Test Parameters
Expand All @@ -43,6 +44,7 @@ var adUnits = [
org: '56f91cd4d3e3660002000033', // Required
floorPrice: 2.00, // Optional
ifa: 'XXX-XXX', // Optional
placementId: '12345678', // Optional
testMode: false // Optional
}
}]
Expand Down