-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Reload Adapter * Reload Adapter: Updated * fixed spacing
- Loading branch information
1 parent
b3516b5
commit a94e4dd
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
layout: bidder | ||
title: Reload | ||
description: Reload Prebid Adaptor | ||
hide: true | ||
biddercode: reload | ||
--- | ||
|
||
|
||
### Bid Params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
| ------------- | -------- | ----------------------------------------------- | ---------------------------------- |----------| | ||
| `plcmID` | required | Placement ID (provided by Reload) | "4234897234" | `string` | | ||
| `partID` | required | Partition ID (provided by Reload) | "part_01" | `string` | | ||
| `opdomID` | required | Internal parameter (provided by Reload) | 0 | `int` | | ||
| `bsrvID` | required | Internal parameter (provided by Reload) | 12 | `int` | | ||
| `type` | optional | Internal parameter (provided by Reload) | "pcm" | `string` | | ||
|
||
|
||
## Example | ||
|
||
```javascript | ||
var adUnits = [ | ||
// Banner adUnit | ||
{ | ||
code: 'banner-div', | ||
mediaTypes: { | ||
banner: { | ||
sizes: [ | ||
[300, 250] | ||
], | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'reload', | ||
params: { | ||
plcmID: '4234897234', | ||
partID: 'part_2', | ||
opdomID: 0, | ||
bsrvID: 0, | ||
type: 'pcm' | ||
} | ||
}] | ||
}]; | ||
``` |