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

RtbSape adapter #2151

Merged
merged 1 commit into from
Aug 14, 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
RtbSape adapter
  • Loading branch information
Dmitry Latyshev committed Jul 21, 2020

Verified

This commit was signed with the committer’s verified signature. The key has expired.
Urhengulas Johann Hemmann
commit a6a9244b395f460a96367544b2b515acb149c9c4
53 changes: 53 additions & 0 deletions dev-docs/bidders/rtbsape.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
layout: bidder
title: RtbSape
description: Prebid RtbSape Bidder Adaptor

biddercode: rtbsape
media_types: banner, video
---

### Note:

The RtbSape Header Bidding adaptor requires setup and approval before beginning. Please reach out to <[email protected]> for more details.


### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|---------------|------------------------|-----------|
| `placeId` | required | Place ID. | `553307` | `integer` |

### Example

```javascript
var adUnits = [
{
code: 'banner-div',
sizes: [[300, 250]],
bids: [
{
bidder: 'rtbsape',
params: {
placeId: 553307
}
}
]
}, {
code: 'video-div',
mediaTypes: {
video: {
context: 'outstream',
playerSize: [600, 340]
}
},
bids: [{
bidder: 'rtbsape',
params: {
placeId: 553309
}
}]
}
];
```