Skip to content

Commit

Permalink
Reload Adapter - New (#1304)
Browse files Browse the repository at this point in the history
* Reload Adapter

* Reload Adapter: Updated

* fixed spacing
  • Loading branch information
mafernandez80 authored and bretg committed May 23, 2019
1 parent b3516b5 commit a94e4dd
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions dev-docs/bidders/reload.md
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'
}
}]
}];
```

0 comments on commit a94e4dd

Please sign in to comment.