Skip to content
Open
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
16 changes: 14 additions & 2 deletions dev-docs/bidders/yaleo.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ pbs: false
sidebarType: 1
---

### Note
## Note

The Yaleo Bidding adapter requires setup before beginning. Please contact us at [hola@yaleo.com](mailto:hola@yaleo.com).

### Bid Params
## Bid Params

{: .table .table-bordered .table-striped }

Expand All @@ -26,3 +26,15 @@ The Yaleo Bidding adapter requires setup before beginning. Please contact us at
| `placementId` | required | Yaleo placement identifier. |`460a301d-a9f7-4104-b55f-2a3d4674a973`|`string`|
| `memberId` | optional | Member identifier. |`12345`. |`number`|
| `maxCpm` | optional | Maximum CPM value. Bids with a CPM higher than the specified value will be rejected. |`2.5` |`number`|

## Configuration

The bidder endpoint can be overridden via global configuration for testing against a non-production environment. Only the approved HTTPS Yaleo endpoints are accepted (`https://bidder.yaleo.com/prebid` and `https://dev-bidder.yaleo.com/prebid`); any other value is ignored and the production endpoint is used.

```javascript
pbjs.setConfig({
yaleo: {
endpoint: 'https://dev-bidder.yaleo.com/prebid'
}
});
```
Loading