-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Add theads alias to admixer #6144
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
Merged
muuki88
merged 9 commits into
prebid:master
from
AdmixerTech:add-theads-alias-to-admixer
Jul 23, 2025
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
d9e2431
Add admixerwl alias for admixerBidAdapter.
53f40f1
Merge branch 'prebid:master' into master
AdmixerTech 114225b
Specify multiformat_supported and safeframes_ok for admixerwl adapter.
0676c54
Merge branch 'prebid:master' into master
dariaboyko 4e66de2
Merge branch 'prebid:master' into master
dariaboyko b177af5
add admixer: The Ads bidder description
DariaBoykoAdmixer 02f81bb
markdown lint
muuki88 56567ed
remove tcfeu_supported
DariaBoykoAdmixer f156bfb
Merge branch 'add-theads-alias-to-admixer' of https://github.com/Admi…
DariaBoykoAdmixer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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 | ||
| 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' | ||
| } | ||
| } | ||
| } | ||
| ``` | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.