relevantDigital.aliasBidder()
Create a manual Prebid bidder alias for specialized custom implementations.
Use relevantDigital.aliasBidder() for specialized implementations that require a manual bidder alias.
Before you begin
Call this function before the first relevantDigital.loadPrebid() call.
For server-side or parallel bidding, this function also creates the required additional alias.
To map the alias to the correct bidder or SSP in Headerbid Analytics, add the alias to Custom Bidder name(s) in the UI.
Signature
relevantDigital.aliasBidder(adapterName, aliasedName)
Example
window.relevantDigital = window.relevantDigital || {};
relevantDigital.cmd = relevantDigital.cmd || [];
relevantDigital.cmd.push(function() {
relevantDigital.aliasBidder('pubmatic', 'pubmatic2');
relevantDigital.aliasBidder('rubicon', 'rubicon2');
})Last updated
Was this helpful?