Skip to content

Commit

Permalink
Performax adapter (#2123)
Browse files Browse the repository at this point in the history
* Add performax dev-doc md

* Add example

Co-authored-by: VasekProchazka <[email protected]>
  • Loading branch information
VasekProchazka and VasekProchazka authored Jul 17, 2020
1 parent 9c0948a commit 61b3344
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions dev-docs/bidders/performax.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
layout: bidder
title: Performax
description: Prebid Performax Bidder Adaptor

biddercode: performax
media_types: banner
---

### Note:
Performax adapter requires setup and approval from the Performax team. Please reach out to your account team or [email protected] for more information.

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|--------------------|------------------------------|----------|
| `slotId` | required | Slot ID | `32572` | `Integer`|

### Example

```javascript
var adUnits = [
{
code: 'performax-div',
sizes: [[300, 300]],
bids: [
{
bidder: "performax",
params: {
slotId: 28 // required
}
}
]
}
];
```

0 comments on commit 61b3344

Please sign in to comment.