Skip to content

Commit

Permalink
Rise Bid Adapter: add alias docs (#5085)
Browse files Browse the repository at this point in the history
* add rise adapter alias docs

* Update dev-docs/bidders/risexchange.md

---------

Co-authored-by: Muki Seiler <muuki88@users.noreply.github.com>
  • Loading branch information
lasloche and muuki88 authored Jan 25, 2024
1 parent 493de08 commit c988f83
Show file tree
Hide file tree
Showing 2 changed files with 194 additions and 0 deletions.
97 changes: 97 additions & 0 deletions dev-docs/bidders/openwebxchange.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
---
layout: bidder
title: OpenWebXChange
description: Prebid OpenWebXChange Bidder Adapter
multiformat_supported: will-bid-on-any
pbjs: true
biddercode: openwebxchange
media_types: banner, video
schain_supported: true
coppa_supported: true
pbs: true
tcfeu_supported: true
usp_supported: true
floors_supported: true
userIds: all
gvl_id: 280
sidebarType: 1
---

### Note

The OpenWebXChange adapter requires setup and approval.

### Bid Parameters

#### Banner, Video

{: .table .table-bordered .table-striped }
| Name | Scope | Type | Description | Example
| ---- | ----- | ---- | ----------- | -------
| `org` | required | String | OpenWebXChange publisher Id | "1234567890abcdef12345678"
| `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"
| `is_wrapper` | private | Boolean | Please don't use unless your account manager asked you to | false
| `currency` | optional | String | 3 letters currency | "EUR"

## Example

```javascript
var adUnits = [{
code: 'banner-div',
mediaTypes: {
banner: {
sizes: [
[300, 250],
[728, 90]
]
}
},
bids: [{
bidder: 'openwebxchange',
params: {
org: '1234567890abcdef12345678', // Required
floorPrice: 0.05, // Optional
placementId: '12345678', // Optional
testMode: false, // Optional,
rtbDomain: 'www.test.com' //Optional
}
}]
},
{
code: 'dfp-video-div',
sizes: [
[640, 480]
],
mediaTypes: {
video: {
playerSize: [
[640, 480]
],
context: 'instream'
}
},
bids: [{
bidder: 'openwebxchange',
params: {
org: '1234567890abcdef12345678', // Required
floorPrice: 5.00, // Optional
placementId: '12345678', // Optional
testMode: false, // Optional,
rtbDomain: 'www.test.com' //Optional
}
}]
}
];
```

### Configuration

We recommend setting UserSync by iframe for monetization.

### Versions

Prebid versions 5.0-5.3 are not supported
Banner >= 6.14.0
97 changes: 97 additions & 0 deletions dev-docs/bidders/risexchange.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
---
layout: bidder
title: RiseXChange
description: Prebid RiseXChange Bidder Adapter
multiformat_supported: will-bid-on-any
pbjs: true
biddercode: risexchange
media_types: banner, video
schain_supported: true
coppa_supported: true
pbs: true
tcfeu_supported: true
usp_supported: true
floors_supported: true
userIds: all
gvl_id: 1043
sidebarType: 1
---

### Note

The RiseXChange adapter requires setup and approval. Please reach out to [prebid-rise-engage@risecodes.com] to setup an account.

### Bid Parameters

#### Banner, Video

{: .table .table-bordered .table-striped }
| Name | Scope | Type | Description | Example
| ---- | ----- | ---- | ----------- | -------
| `org` | required | String | RiseXChange publisher Id | "1234567890abcdef12345678"
| `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"
| `is_wrapper` | private | Boolean | Please don't use unless your account manager asked you to | false
| `currency` | optional | String | 3 letters currency | "EUR"

## Example

```javascript
var adUnits = [{
code: 'banner-div',
mediaTypes: {
banner: {
sizes: [
[300, 250],
[728, 90]
]
}
},
bids: [{
bidder: 'risexchange',
params: {
org: '1234567890abcdef12345678', // Required
floorPrice: 0.05, // Optional
placementId: '12345678', // Optional
testMode: false, // Optional,
rtbDomain: 'www.test.com' //Optional
}
}]
},
{
code: 'dfp-video-div',
sizes: [
[640, 480]
],
mediaTypes: {
video: {
playerSize: [
[640, 480]
],
context: 'instream'
}
},
bids: [{
bidder: 'risexchange',
params: {
org: '1234567890abcdef12345678', // Required
floorPrice: 5.00, // Optional
placementId: '12345678', // Optional
testMode: false, // Optional,
rtbDomain: 'www.test.com' //Optional
}
}]
}
];
```

### Configuration

We recommend setting UserSync by iframe for monetization.

### Versions

Prebid versions 5.0-5.3 are not supported
Banner >= 6.14.0

0 comments on commit c988f83

Please sign in to comment.