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

Updated Between adapter dev docs #2549

Merged
merged 7 commits into from
Dec 7, 2020
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
18 changes: 15 additions & 3 deletions dev-docs/bidders/between.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: bidder
title: Between
description: Prebid Between Bidder Adaptor
description: Prebid Between Bidder Adapter
pbjs: true
pbs: true
biddercode: between
Expand All @@ -10,11 +10,23 @@ gdpr_supported: true
tcf2_supported: true
---

### Bid Params
### Prebid.js Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|-------------|---------|----------|
| `host` | required | between host url prefix | `eu` | `string` |
| `s` | required | Section ID from Between SSP control panel | 999999 | `integer` |
| `w` | required | width of placement(Number) | 240 |
| `h` | required | height of placement(Number) | 400 |

### Prebid-Server Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|-------------|---------|----------|
| `host` | required | Between SSP host url prefix. Defines data center where requests will be sent. Choose the closest one to the prebid-server you are using. Allowed values: `lbs-eu1.ads`, `lbs-ru1.ads`, `lbs-asia1.ads`, `lbs-us-east1.ads` | `'lbs-eu1.ads'` | `string` |
| `publisher_id` | required | Publisher ID from Between SSP control panel | `'123'` | `string` |
| `bid_floor` | optional | Minimum price acceptable for a bid. `0.00001` by default | `0.05` | `float` |
| `bid_floor_cur` | optional | Bid floor currency. Allowed values: `USD`, `EUR`, `RUB` | `'USD'` | `string` |