From 474accf43ed8f8854f69a132f3da7d3896ace82b Mon Sep 17 00:00:00 2001 From: Julian Salinas Date: Sun, 3 Nov 2024 11:21:30 -0800 Subject: [PATCH 01/17] Add RoundhouseAds bidder documentation --- .../bidders/dev-docs/bidders/roundhouseads.md | 107 ++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 dev-docs/bidders/dev-docs/bidders/roundhouseads.md diff --git a/dev-docs/bidders/dev-docs/bidders/roundhouseads.md b/dev-docs/bidders/dev-docs/bidders/roundhouseads.md new file mode 100644 index 0000000000..56b2e2934e --- /dev/null +++ b/dev-docs/bidders/dev-docs/bidders/roundhouseads.md @@ -0,0 +1,107 @@ +--- +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 +--- + +### Overview + +The RoundhouseAds Bidder Adapter connects to RoundhouseAds' advertising platform, enabling bids for display, video, and native ad formats. Please contact [info@roundhouseads.com](mailto:info@roundhouseads.com) 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 }, + 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: info@roundhouseads.com + • Supported Media Types: Banner, Video, Native + • GDPR: The adapter does not currently support TCFv2 (tcfeu_supported: false). + • USP: The adapter supports US Privacy (usp_supported: true). + • COPPA: This adapter respects the COPPA flag if enabled (coppa_supported: true). + • Schain: The adapter supports supply chain object (schain_supported: true). + • Floor Module: Supports the Prebid Floors Module (floors_supported: true). + +For any further questions or issues, please reach out to the RoundhouseAds team at info@roundhouseads.com. + From 5198250ba7748973c2f096e42e5b4cf0930382f8 Mon Sep 17 00:00:00 2001 From: Julian Salinas Date: Sun, 3 Nov 2024 12:06:55 -0800 Subject: [PATCH 02/17] Add RoundhouseAds bidder documentation with additional information --- dev-docs/bidders/roundhouseads.md | 94 +++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 dev-docs/bidders/roundhouseads.md diff --git a/dev-docs/bidders/roundhouseads.md b/dev-docs/bidders/roundhouseads.md new file mode 100644 index 0000000000..16446fa231 --- /dev/null +++ b/dev-docs/bidders/roundhouseads.md @@ -0,0 +1,94 @@ +--- +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 +--- + +### Overview + +The RoundhouseAds Bidder Adapter connects to RoundhouseAds' advertising platform, enabling bids for display, video, and native ad formats. Please contact [info@roundhouseads.com](mailto:info@roundhouseads.com) 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 }, + 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' + } + } + } + ] + } +]; \ No newline at end of file From 79fd14dbe0b784e066dee2c251b51e6cae74766a Mon Sep 17 00:00:00 2001 From: Julian Salinas Date: Sun, 3 Nov 2024 12:28:01 -0800 Subject: [PATCH 03/17] Add final RoundhouseAds bidder documentation --- dev-docs/bidders/roundhouseads.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/roundhouseads.md b/dev-docs/bidders/roundhouseads.md index 16446fa231..dbc0c32267 100644 --- a/dev-docs/bidders/roundhouseads.md +++ b/dev-docs/bidders/roundhouseads.md @@ -15,7 +15,7 @@ sidebarType: 1 ### Overview -The RoundhouseAds Bidder Adapter connects to RoundhouseAds' advertising platform, enabling bids for display, video, and native ad formats. Please contact [info@roundhouseads.com](mailto:info@roundhouseads.com) to get started. +The RoundhouseAds Bidder Adapter connects to RoundhouseAds' advertising platform, enabling bids for display, video, and native ad formats. Please contact: [info@roundhouseads.com](mailto:info@roundhouseads.com) to get started. ### Bid Parameters From 61e5108f716d4a54b99d1746d3a9015e00dcdfe5 Mon Sep 17 00:00:00 2001 From: Julian Salinas Date: Sun, 3 Nov 2024 12:36:58 -0800 Subject: [PATCH 04/17] Final update to RoundhouseAds bidder documentation with additional information section --- dev-docs/bidders/roundhouseads.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/dev-docs/bidders/roundhouseads.md b/dev-docs/bidders/roundhouseads.md index dbc0c32267..02f9751e3c 100644 --- a/dev-docs/bidders/roundhouseads.md +++ b/dev-docs/bidders/roundhouseads.md @@ -91,4 +91,12 @@ var adUnits = [ } ] } -]; \ No newline at end of file +]; +### Additional Information +- **Maintainer Contact**: [info@roundhouseads.com](mailto:info@roundhouseads.com) +- **Supported Media Types**: Banner, Video, Native +- **GDPR**: The adapter does not currently support TCFv2 (`tcfeu_supported: false`). +- **USP**: The adapter supports US Privacy (`usp_supported: true`). +- **COPPA**: This adapter respects the COPPA flag if enabled (`coppa_supported: true`). +- **Schain**: The adapter supports supply chain object (`schain_supported: true`). +- **Floor Module**: Supports the Prebid Floors Module (`floors_supported: true`). \ No newline at end of file From e1ce2c581b88a163d7834d8c59ee66bacfd5b5d1 Mon Sep 17 00:00:00 2001 From: Julian Salinas Date: Sun, 3 Nov 2024 13:11:55 -0800 Subject: [PATCH 05/17] Add final version of RoundhouseAds bidder documentation --- roundhouseads.md | 104 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 roundhouseads.md diff --git a/roundhouseads.md b/roundhouseads.md new file mode 100644 index 0000000000..1b43719f41 --- /dev/null +++ b/roundhouseads.md @@ -0,0 +1,104 @@ +--- +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 +--- + +### Overview + +The RoundhouseAds Bidder Adapter connects to RoundhouseAds' advertising platform, enabling bids for display, video, and native ad formats. Please contact: [info@roundhouseads.com](mailto:info@roundhouseads.com) 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 }, + 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**: [info@roundhouseads.com](mailto:info@roundhouseads.com) +- **Supported Media Types**: Banner, Video, Native +- **GDPR**: The adapter does not currently support TCFv2 (`tcfeu_supported: false`). +- **USP**: The adapter supports US Privacy (`usp_supported: true`). +- **COPPA**: This adapter respects the COPPA flag if enabled (`coppa_supported: true`). +- **Schain**: The adapter supports supply chain object (`schain_supported: true`). +- **Floor Module**: Supports the Prebid Floors Module (`floors_supported: true`). From d6effd5d0d7f29ddb9b5adf49246bde6dda648d7 Mon Sep 17 00:00:00 2001 From: Julian Salinas Date: Sun, 3 Nov 2024 13:40:39 -0800 Subject: [PATCH 06/17] Add final version of RoundhouseAds bidder documentation --- dev-docs/bidders/roundhouseads.md | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/dev-docs/bidders/roundhouseads.md b/dev-docs/bidders/roundhouseads.md index 02f9751e3c..7c0e4ff83f 100644 --- a/dev-docs/bidders/roundhouseads.md +++ b/dev-docs/bidders/roundhouseads.md @@ -35,14 +35,14 @@ var adUnits = [ code: 'banner-ad-unit', mediaTypes: { banner: { - sizes: [[300, 250]] + sizes: [[300, 250]] } }, bids: [ { - bidder: 'roundhouseads', - params: { - placementId: 'your-placement-id' + bidder: 'roundhouseads', + params: { + placementId: 'your-placement-id' } } ] @@ -91,12 +91,4 @@ var adUnits = [ } ] } -]; -### Additional Information -- **Maintainer Contact**: [info@roundhouseads.com](mailto:info@roundhouseads.com) -- **Supported Media Types**: Banner, Video, Native -- **GDPR**: The adapter does not currently support TCFv2 (`tcfeu_supported: false`). -- **USP**: The adapter supports US Privacy (`usp_supported: true`). -- **COPPA**: This adapter respects the COPPA flag if enabled (`coppa_supported: true`). -- **Schain**: The adapter supports supply chain object (`schain_supported: true`). -- **Floor Module**: Supports the Prebid Floors Module (`floors_supported: true`). \ No newline at end of file +]; \ No newline at end of file From 878e4e7f75cc3ff7806b587459159e0731835c08 Mon Sep 17 00:00:00 2001 From: Julian Salinas Date: Sun, 3 Nov 2024 13:47:24 -0800 Subject: [PATCH 07/17] Remove duplicate roundhouseads.md file --- .../bidders/dev-docs/bidders/roundhouseads.md | 107 ------------------ 1 file changed, 107 deletions(-) delete mode 100644 dev-docs/bidders/dev-docs/bidders/roundhouseads.md diff --git a/dev-docs/bidders/dev-docs/bidders/roundhouseads.md b/dev-docs/bidders/dev-docs/bidders/roundhouseads.md deleted file mode 100644 index 56b2e2934e..0000000000 --- a/dev-docs/bidders/dev-docs/bidders/roundhouseads.md +++ /dev/null @@ -1,107 +0,0 @@ ---- -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 ---- - -### Overview - -The RoundhouseAds Bidder Adapter connects to RoundhouseAds' advertising platform, enabling bids for display, video, and native ad formats. Please contact [info@roundhouseads.com](mailto:info@roundhouseads.com) 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 }, - 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: info@roundhouseads.com - • Supported Media Types: Banner, Video, Native - • GDPR: The adapter does not currently support TCFv2 (tcfeu_supported: false). - • USP: The adapter supports US Privacy (usp_supported: true). - • COPPA: This adapter respects the COPPA flag if enabled (coppa_supported: true). - • Schain: The adapter supports supply chain object (schain_supported: true). - • Floor Module: Supports the Prebid Floors Module (floors_supported: true). - -For any further questions or issues, please reach out to the RoundhouseAds team at info@roundhouseads.com. - From b171434bc3e431534fced940cd685b4ef8f73184 Mon Sep 17 00:00:00 2001 From: Julian Salinas Date: Sun, 3 Nov 2024 13:57:32 -0800 Subject: [PATCH 08/17] Final formatting updates for RoundhouseAds bidder documentation --- dev-docs/bidders/roundhouseads.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/roundhouseads.md b/dev-docs/bidders/roundhouseads.md index 7c0e4ff83f..1f186dc5b4 100644 --- a/dev-docs/bidders/roundhouseads.md +++ b/dev-docs/bidders/roundhouseads.md @@ -91,4 +91,4 @@ var adUnits = [ } ] } -]; \ No newline at end of file +]; From f342f4bc0b0aeebd0c6753407d75c3528579aa07 Mon Sep 17 00:00:00 2001 From: Julian Salinas Date: Sun, 3 Nov 2024 14:07:35 -0800 Subject: [PATCH 09/17] Final formatting updates for RoundhouseAds bidder documentation --- dev-docs/bidders/roundhouseads.md | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-docs/bidders/roundhouseads.md b/dev-docs/bidders/roundhouseads.md index 1f186dc5b4..5acdfb86ad 100644 --- a/dev-docs/bidders/roundhouseads.md +++ b/dev-docs/bidders/roundhouseads.md @@ -92,3 +92,4 @@ var adUnits = [ ] } ]; + From 52a27317b174f254e5e4196807d4b5da61d6b477 Mon Sep 17 00:00:00 2001 From: Julian Salinas Date: Sun, 3 Nov 2024 14:12:33 -0800 Subject: [PATCH 10/17] Final formatting updates for RoundhouseAds bidder documentation --- dev-docs/bidders/roundhouseads.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/dev-docs/bidders/roundhouseads.md b/dev-docs/bidders/roundhouseads.md index 5acdfb86ad..0a5c88354b 100644 --- a/dev-docs/bidders/roundhouseads.md +++ b/dev-docs/bidders/roundhouseads.md @@ -93,3 +93,18 @@ var adUnits = [ } ]; +### Additional Information + +- **Maintainer Contact**: [info@roundhouseads.com](mailto:info@roundhouseads.com) + +- **Supported Media Types**: Banner, Video, Native + +- **GDPR**: The adapter does not currently support TCFv2 (`tcfeu_supported: false`). + +- **USP**: The adapter supports US Privacy (`usp_supported: true`). + +- **COPPA**: This adapter respects the COPPA flag if enabled (`coppa_supported: true`). + +- **Schain**: The adapter supports supply chain object (`schain_supported: true`). + +- **Floor Module**: Supports the Prebid Floors Module (`floors_supported: true`). \ No newline at end of file From cb0f71766e8999790047a52b11c3dd268a14cbcc Mon Sep 17 00:00:00 2001 From: Julian Salinas Date: Sun, 3 Nov 2024 14:13:37 -0800 Subject: [PATCH 11/17] Final formatting updates for RoundhouseAds bidder documentation --- dev-docs/bidders/roundhouseads.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/roundhouseads.md b/dev-docs/bidders/roundhouseads.md index 0a5c88354b..126c385af3 100644 --- a/dev-docs/bidders/roundhouseads.md +++ b/dev-docs/bidders/roundhouseads.md @@ -107,4 +107,4 @@ var adUnits = [ - **Schain**: The adapter supports supply chain object (`schain_supported: true`). -- **Floor Module**: Supports the Prebid Floors Module (`floors_supported: true`). \ No newline at end of file +- **Floor Module**: Supports the Prebid Floors Module (`floors_supported: true`). From 9e8a2bf86b19f3c460895e1069c8611d3797f4e3 Mon Sep 17 00:00:00 2001 From: Julian Salinas Date: Sun, 3 Nov 2024 14:21:32 -0800 Subject: [PATCH 12/17] Final formatting updates for RoundhouseAds bidder documentation --- dev-docs/bidders/roundhouseads.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-docs/bidders/roundhouseads.md b/dev-docs/bidders/roundhouseads.md index 126c385af3..50440b2a8b 100644 --- a/dev-docs/bidders/roundhouseads.md +++ b/dev-docs/bidders/roundhouseads.md @@ -95,9 +95,9 @@ var adUnits = [ ### Additional Information -- **Maintainer Contact**: [info@roundhouseads.com](mailto:info@roundhouseads.com) +- **Maintainer Contact**: [info@roundhouseads.com](mailto:info@roundhouseads.com). -- **Supported Media Types**: Banner, Video, Native +- **Supported Media Types**: Banner, Video, Native. - **GDPR**: The adapter does not currently support TCFv2 (`tcfeu_supported: false`). From df71ea2381b811b952b76b08fd66cb143e85830d Mon Sep 17 00:00:00 2001 From: Julian Salinas Date: Sun, 3 Nov 2024 14:22:24 -0800 Subject: [PATCH 13/17] Final formatting updates for RoundhouseAds bidder documentation --- dev-docs/bidders/roundhouseads.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/roundhouseads.md b/dev-docs/bidders/roundhouseads.md index 50440b2a8b..9890a588d0 100644 --- a/dev-docs/bidders/roundhouseads.md +++ b/dev-docs/bidders/roundhouseads.md @@ -93,7 +93,7 @@ var adUnits = [ } ]; -### Additional Information +### Additional Information. - **Maintainer Contact**: [info@roundhouseads.com](mailto:info@roundhouseads.com). From fa6712695deb13cd2a2c40aa1a08947346b8d072 Mon Sep 17 00:00:00 2001 From: Julian Salinas Date: Sun, 3 Nov 2024 14:23:48 -0800 Subject: [PATCH 14/17] Final formatting updates for RoundhouseAds bidder documentation --- dev-docs/bidders/roundhouseads.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/roundhouseads.md b/dev-docs/bidders/roundhouseads.md index 9890a588d0..93169bd1db 100644 --- a/dev-docs/bidders/roundhouseads.md +++ b/dev-docs/bidders/roundhouseads.md @@ -93,7 +93,7 @@ var adUnits = [ } ]; -### Additional Information. +## Additional Information. - **Maintainer Contact**: [info@roundhouseads.com](mailto:info@roundhouseads.com). From 3aed29bcd98cb3b6fabe2dc403e4ce0d22aebfaf Mon Sep 17 00:00:00 2001 From: Julian Salinas Date: Sun, 3 Nov 2024 14:26:04 -0800 Subject: [PATCH 15/17] Final formatting updates for RoundhouseAds bidder documentation --- dev-docs/bidders/roundhouseads.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/roundhouseads.md b/dev-docs/bidders/roundhouseads.md index 93169bd1db..50440b2a8b 100644 --- a/dev-docs/bidders/roundhouseads.md +++ b/dev-docs/bidders/roundhouseads.md @@ -93,7 +93,7 @@ var adUnits = [ } ]; -## Additional Information. +### Additional Information - **Maintainer Contact**: [info@roundhouseads.com](mailto:info@roundhouseads.com). From 65925733860a437d39ab312a853fb025e3036cef Mon Sep 17 00:00:00 2001 From: Julian Salinas Date: Sun, 3 Nov 2024 15:50:41 -0800 Subject: [PATCH 16/17] Remove extra roundhouseads.md file from root directory --- roundhouseads.md | 104 ----------------------------------------------- 1 file changed, 104 deletions(-) delete mode 100644 roundhouseads.md diff --git a/roundhouseads.md b/roundhouseads.md deleted file mode 100644 index 1b43719f41..0000000000 --- a/roundhouseads.md +++ /dev/null @@ -1,104 +0,0 @@ ---- -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 ---- - -### Overview - -The RoundhouseAds Bidder Adapter connects to RoundhouseAds' advertising platform, enabling bids for display, video, and native ad formats. Please contact: [info@roundhouseads.com](mailto:info@roundhouseads.com) 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 }, - 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**: [info@roundhouseads.com](mailto:info@roundhouseads.com) -- **Supported Media Types**: Banner, Video, Native -- **GDPR**: The adapter does not currently support TCFv2 (`tcfeu_supported: false`). -- **USP**: The adapter supports US Privacy (`usp_supported: true`). -- **COPPA**: This adapter respects the COPPA flag if enabled (`coppa_supported: true`). -- **Schain**: The adapter supports supply chain object (`schain_supported: true`). -- **Floor Module**: Supports the Prebid Floors Module (`floors_supported: true`). From a189899478fa86616ce10cfaeebda3f16da9158a Mon Sep 17 00:00:00 2001 From: Muki Seiler Date: Thu, 28 Nov 2024 19:29:29 +0100 Subject: [PATCH 17/17] Update dev-docs/bidders/roundhouseads.md --- dev-docs/bidders/roundhouseads.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/dev-docs/bidders/roundhouseads.md b/dev-docs/bidders/roundhouseads.md index 50440b2a8b..ca851296bc 100644 --- a/dev-docs/bidders/roundhouseads.md +++ b/dev-docs/bidders/roundhouseads.md @@ -97,14 +97,3 @@ var adUnits = [ - **Maintainer Contact**: [info@roundhouseads.com](mailto:info@roundhouseads.com). -- **Supported Media Types**: Banner, Video, Native. - -- **GDPR**: The adapter does not currently support TCFv2 (`tcfeu_supported: false`). - -- **USP**: The adapter supports US Privacy (`usp_supported: true`). - -- **COPPA**: This adapter respects the COPPA flag if enabled (`coppa_supported: true`). - -- **Schain**: The adapter supports supply chain object (`schain_supported: true`). - -- **Floor Module**: Supports the Prebid Floors Module (`floors_supported: true`).