From d9e2431fbeced7866a56148bdc53489de7426975 Mon Sep 17 00:00:00 2001 From: Yaroslav Masenko Date: Tue, 19 Dec 2023 14:24:29 +0200 Subject: [PATCH 1/4] 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/4] 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 0b48429333adac241c57e22a72367f3c753930bd Mon Sep 17 00:00:00 2001 From: Daria Boyko Date: Fri, 6 Mar 2026 17:51:12 +0200 Subject: [PATCH 3/4] add Prebid Server Support docs to rtb stack --- dev-docs/bidders/rtbstack.md | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/dev-docs/bidders/rtbstack.md b/dev-docs/bidders/rtbstack.md index f5b30d9950..703256a62d 100644 --- a/dev-docs/bidders/rtbstack.md +++ b/dev-docs/bidders/rtbstack.md @@ -8,6 +8,7 @@ aliasCode: admixer media_types: banner, video, native tcfeu_supported: true usp_supported: true +pbs: true schain_supported: true gvl_id: 511 userIds: AdmixerID @@ -18,7 +19,7 @@ multiformat_supported: will-bid-on-any safeframes_ok: true --- -#### Bidder Configuration +### Bidder Configuration RTB Stack bidder requires bidderURL to be set. Please note that rtbstack bids will not be requested without this config. It must be set before auction starts. @@ -31,7 +32,7 @@ pbjs.setBidderConfig({ }); ``` -### Bid Params +#### Bid Params {: .table .table-bordered .table-striped } | Name | Scope | Description | Example | Type | @@ -52,3 +53,30 @@ pbjs.setBidderConfig({ } } ``` + +### Prebid Server Configuration +The RTB Stack adapter allows publishers to connect to RTB Stack demand through Prebid Server using server-to-server (S2S) bidding. + +#### Bid Params + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|---------------------|----------|--------------------------------------------------------------------------------------------|------------------------------|----------| +| `route` | required | Full RTB Stack route URL used to derive the RTB Stack endpoint. This URL typically includes the region host and query parameters such as client, endpoint, and ssp. | https://us-adx-example.rtb-stack.com/prebid?client=44e2d241-5051-4b58-8ac6-f17e13732339&ssp=3&endpoint=777 | `string` | +| `tagId` | required | The unique identifier of the ad placement. Will be used for comparison of statistics. | 12345 | `string` | +| `customParams` | 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: 'rtbstack', + params: { + tagId: '12345', + route: 'https://us-adx-example.rtb-stack.com/prebid?client=44e2d241-5051-4b58-8ac6-f17e13732339&ssp=3&endpoint=777', + customParams: { + example: 'test' + } + } +} +``` From 82acdc9200a46dd5cb7d53fce7f6b6c132f18ccd Mon Sep 17 00:00:00 2001 From: Daria Boyko Date: Fri, 6 Mar 2026 17:56:49 +0200 Subject: [PATCH 4/4] fix bare examples --- dev-docs/bidders/rtbstack.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-docs/bidders/rtbstack.md b/dev-docs/bidders/rtbstack.md index 703256a62d..98af8cc685 100644 --- a/dev-docs/bidders/rtbstack.md +++ b/dev-docs/bidders/rtbstack.md @@ -37,8 +37,8 @@ pbjs.setBidderConfig({ {: .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` | +| `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 @@ -62,9 +62,9 @@ The RTB Stack adapter allows publishers to connect to RTB Stack demand through P {: .table .table-bordered .table-striped } | Name | Scope | Description | Example | Type | |---------------------|----------|--------------------------------------------------------------------------------------------|------------------------------|----------| -| `route` | required | Full RTB Stack route URL used to derive the RTB Stack endpoint. This URL typically includes the region host and query parameters such as client, endpoint, and ssp. | https://us-adx-example.rtb-stack.com/prebid?client=44e2d241-5051-4b58-8ac6-f17e13732339&ssp=3&endpoint=777 | `string` | -| `tagId` | required | The unique identifier of the ad placement. Will be used for comparison of statistics. | 12345 | `string` | -| `customParams` | optional | Key/Value - a pair of the unique values that will be used for the custom targeting option. | {key1: value2, key2: value2} | `object` | +| `route` | required | Full RTB Stack route URL used to derive the RTB Stack endpoint. This URL typically includes the region host and query parameters such as client, endpoint, and ssp. | `https://us-adx-example.rtb-stack.com/prebid?client=44e2d241-5051-4b58-8ac6-f17e13732339&ssp=3&endpoint=777` | `string` | +| `tagId` | required | The unique identifier of the ad placement. Will be used for comparison of statistics. | `12345` | `string` | +| `customParams` | 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