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

Rise Bid Adapter: add alias docs #5085

Merged
merged 2 commits into from
Jan 25, 2024
Merged
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
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