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

add Bidsxchange page #2848

Merged
merged 1 commit into from
Apr 13, 2021
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
121 changes: 121 additions & 0 deletions dev-docs/bidders/bidsxchange.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
---
layout: bidder
title: Bidsxchange
description: Prebid Bidsxchange Bidder Adapter
biddercode: bidsxchange
aliasCode: adtelligent
media_types: video,banner
gdpr_supported: true
userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId
schain_supported: true
coppa_supported: true
usp_supported: true
safeframes_ok: true
prebid_member: true
pbjs: true
pbs: false
---

### Bid params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|-------|----------|---------------------------------|----------|-----------|
| `aid` | required | The source ID from bidsxchange. | `529814` | `integer` |

### Description
Get access to multiple demand partners across Bidsxchange AdExchange and maximize your yield with Bidsxchange header bidding adapter.

Bidsxchange header bidding adapter connects with Bidsxchange demand sources in order to fetch bids.
This adapter provides a solution for accessing Video demand and display demand.

Bidsxchange now supports adpod.

### Test Parameters
```
var adUnits = [

// Video instream adUnit
{
code: 'test-div',
mediaTypes: {
video: {
context: 'instream',
playerSize: [640, 480]
}
},
bids: [{
bidder: 'bidsxchange',
params: {
aid: 472386
}
}]
},

// Video outstream adUnit
{
code: 'test-div',
mediaTypes: {
video: {
context: 'outstream',
playerSize: [640, 480]
}
},
bids: [{
bidder: 'bidsxchange',
params: {
aid: 472386
}
}]
},

// Video ADPOD adUnit
{
code: 'test-div',
sizes: [[640, 480]],
mediaTypes: {
video: {
context: 'adpod',
playerSize: [640, 480]
}
},
bids: [{
bidder: 'bidsxchange',
params: {
aid: 472386
}
}]
},

// Banner adUnit
{
code: 'test-div',
mediaTypes:{
banner:{
sizes: [[300, 250]]
}
}
bids: [{
bidder: 'bidsxchange',
params: {
aid: 529814
}
}]
}
];
```

### Additional Configuration

It is possible to configure requests to be split into chunks so as to have fewer bid requests in a single http request
(default value is 10).

```
pbjs.setBidderConfig({
config: {
bidsxchange: {
chunkSize: 1 // makes 1 http request per 1 adunit configured
}
}
});
```