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

Add RoundhouseAds bidder documentation #5685

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
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
99 changes: 99 additions & 0 deletions dev-docs/bidders/roundhouseads.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
---
layout: bidder
title: RoundhouseAds
description: RoundhouseAds Prebid Bidder Adapter
biddercode: roundhouseads
tcfeu_supported: false
usp_supported: true
coppa_supported: true
schain_supported: true
media_types: banner, video, native
floors_supported: true
pbjs: true
sidebarType: 1
Comment on lines +9 to +13
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This document is missing quite a few pieces of adapter metadata. Please fill out the metadata as documented at https://docs.prebid.org/dev-docs/bidder-adaptor.html#submitting-your-adapter

---

### Overview

The RoundhouseAds Bidder Adapter connects to RoundhouseAds' advertising platform, enabling bids for display, video, and native ad formats. Please contact: [[email protected]](mailto:[email protected]) to get started.

### Bid Parameters

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|----------------|----------|---------------------------------------------------------|------------------------|---------|
| `placementId` | required | Unique placement identifier provided by RoundhouseAds | `'12345'` | string |
| `video` | optional | Video-specific settings (only for video ad units) | `{ language: 'en' }` | object |

### Test Parameters

To test the RoundhouseAds adapter, use the following example ad units:

```javascript
var adUnits = [
{
code: 'banner-ad-unit',
mediaTypes: {
banner: {
sizes: [[300, 250]]
}
},
bids: [
{
bidder: 'roundhouseads',
params: {
placementId: 'your-placement-id'
}
}
]
},
{
code: 'native-ad-unit',
mediaTypes: {
native: {
title: { required: true },
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would recommend using the OpenRTB 2.5 native configuration instead.
The custom prebid configuration may be removed at some point in time

body: { required: true },
image: { required: true },
icon: { required: false }
}
},
bids: [
{
bidder: 'roundhouseads',
params: {
placementId: 'your-placement-id'
}
}
]
},
{
code: 'video-ad-unit',
mediaTypes: {
video: {
context: 'instream',
playerSize: [640, 480],
mimes: ['video/mp4'],
protocols: [2, 5],
maxduration: 30,
linearity: 1,
api: [2]
}
},
bids: [
{
bidder: 'roundhouseads',
params: {
placementId: 'your-placement-id',
video: {
language: 'en'
}
}
}
]
}
];

### Additional Information

- **Maintainer Contact**: [[email protected]](mailto:[email protected]).

Loading