From d9e2431fbeced7866a56148bdc53489de7426975 Mon Sep 17 00:00:00 2001 From: Yaroslav Masenko Date: Tue, 19 Dec 2023 14:24:29 +0200 Subject: [PATCH 1/5] Add admixerwl alias for admixerBidAdapter. --- dev-docs/bidders/admixerwl.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 dev-docs/bidders/admixerwl.md diff --git a/dev-docs/bidders/admixerwl.md b/dev-docs/bidders/admixerwl.md new file mode 100644 index 0000000000..5417d7fefa --- /dev/null +++ b/dev-docs/bidders/admixerwl.md @@ -0,0 +1,26 @@ +--- +layout: bidder +title: AdmixerWL +description: Prebid AdMixer Bidder Adaptor +pbjs: true +biddercode: admixerwl +aliasCode: admixer +media_types: banner, video, native +tcfeu_supported: true +usp_supported: true +schain_supported: true +gvl_id: 511 +userIds: AdmixerID +prebid_member: true +floors_supported: true +sidebarType: 1 +--- + +### Bid Params + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|---------------------|----------|--------------------------------------------------------------------------------------------|------------------------------|----------| +| `endpointId` | required | Unique Entity ID. Could be obtained from your account manager. | 51772 | `int` | +| `clientId` | required | Unique Entity ID. Could be obtained from your account manager. | 312 | `int` | +| `kvTargeting` | optional | Key/Value - a pair of the unique values that will be used for the custom targeting option. | {key1: value2, key2: value2} | `object` | From 114225bff9f31910619c26bc73d4f52e8ed5493f Mon Sep 17 00:00:00 2001 From: Yaroslav Masenko Date: Thu, 28 Dec 2023 10:11:29 +0200 Subject: [PATCH 2/5] Specify multiformat_supported and safeframes_ok for admixerwl adapter. --- dev-docs/bidders/admixerwl.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-docs/bidders/admixerwl.md b/dev-docs/bidders/admixerwl.md index 5417d7fefa..8232989500 100644 --- a/dev-docs/bidders/admixerwl.md +++ b/dev-docs/bidders/admixerwl.md @@ -14,6 +14,8 @@ userIds: AdmixerID prebid_member: true floors_supported: true sidebarType: 1 +multiformat_supported: will-bid-on-any +safeframes_ok: true --- ### Bid Params From b177af51ab088c963c28a9962885c8dbcab27bbb Mon Sep 17 00:00:00 2001 From: Daria Boyko Date: Mon, 14 Jul 2025 12:55:47 +0300 Subject: [PATCH 3/5] add admixer: The Ads bidder description --- dev-docs/bidders/theads.md | 52 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 dev-docs/bidders/theads.md diff --git a/dev-docs/bidders/theads.md b/dev-docs/bidders/theads.md new file mode 100644 index 0000000000..3961557ef6 --- /dev/null +++ b/dev-docs/bidders/theads.md @@ -0,0 +1,52 @@ +--- +layout: bidder +title: The Ads +description: Prebid AdMixer Bidder Adaptor +pbjs: true +biddercode: theads +aliasCode: admixer +media_types: banner, video, native +tcfeu_supported: true +usp_supported: true +schain_supported: true +prebid_member: true +floors_supported: true +sidebarType: 1 +multiformat_supported: will-bid-on-any +safeframes_ok: true +--- + +#### Bidder Configuration + +The Ads bidder requires bidderURL to be set. Please note that theads bids will not be requested without this config. It must be set before auction starts. + +```js +pbjs.setBidderConfig({ + bidders: ['theads'], + config: { + bidderURL: 'https://us-adx-example.rtb-stack.com/prebid?client=44e2d241-5051-4b58-8ac6-f17e13732339&ssp=3&endpoint=777' + } +}); +``` + +### Bid Params + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|---------------------|----------|--------------------------------------------------------------------------------------------|------------------------------|----------| +| `tagId` | required |The unique identifier of the ad placement. Will be used for comparison of statistics. | 51772 | `int` | +| `kvTargeting` | optional | Key/Value - a pair of the unique values that will be used for the custom targeting option. | {key1: value2, key2: value2} | `object` | + +#### Bid Example + +```js +{ + bidder: 'theads', + params: { + tagId: '12345', + kvTargeting: { + example: 'test' + } + } +} +``` From 02f81bbe6d840f2c6331399f64f093e4b0f35377 Mon Sep 17 00:00:00 2001 From: Muki Seiler Date: Tue, 22 Jul 2025 16:35:57 +0200 Subject: [PATCH 4/5] markdown lint --- dev-docs/bidders/theads.md | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-docs/bidders/theads.md b/dev-docs/bidders/theads.md index 3961557ef6..75d75281ad 100644 --- a/dev-docs/bidders/theads.md +++ b/dev-docs/bidders/theads.md @@ -32,6 +32,7 @@ pbjs.setBidderConfig({ ### Bid Params {: .table .table-bordered .table-striped } + | Name | Scope | Description | Example | Type | |---------------------|----------|--------------------------------------------------------------------------------------------|------------------------------|----------| | `tagId` | required |The unique identifier of the ad placement. Will be used for comparison of statistics. | 51772 | `int` | From 56567edcf142f392ecfe90be4d42466b1a8d1d45 Mon Sep 17 00:00:00 2001 From: Daria Boyko Date: Wed, 23 Jul 2025 11:32:49 +0300 Subject: [PATCH 5/5] remove tcfeu_supported --- dev-docs/bidders/theads.md | 1 - 1 file changed, 1 deletion(-) diff --git a/dev-docs/bidders/theads.md b/dev-docs/bidders/theads.md index 3961557ef6..24216ce836 100644 --- a/dev-docs/bidders/theads.md +++ b/dev-docs/bidders/theads.md @@ -6,7 +6,6 @@ pbjs: true biddercode: theads aliasCode: admixer media_types: banner, video, native -tcfeu_supported: true usp_supported: true schain_supported: true prebid_member: true