Skip to content
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

AdmixerBidAdapter: rtbstack change endpointId to tagId #11925

Merged
merged 9 commits into from
Jul 5, 2024
2 changes: 1 addition & 1 deletion modules/admixerBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const spec = {
*/
isBidRequestValid: function (bid) {
return bid.bidder === 'rtbstack'
? !!bid.params.endpointId
? !!bid.params.tagId
: !!bid.params.zone;
},
/**
Expand Down
6 changes: 3 additions & 3 deletions modules/admixerBidAdapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Please use ```admixer``` as the bidder code.
{
bidder: "rtbstack",
params: {
endpointId: 41512
tagId: 41512
}
}
]
Expand All @@ -72,7 +72,7 @@ Please use ```admixer``` as the bidder code.
{
bidder: "rtbstack",
params: {
endpointId: 41512
tagId: 41512
}
}
]
Expand All @@ -84,7 +84,7 @@ Please use ```admixer``` as the bidder code.
{
bidder: "rtbstack",
params: {
endpointId: 41512
tagId: 41512
}
}
]
Expand Down
4 changes: 2 additions & 2 deletions test/spec/modules/admixerBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('AdmixerAdapter', function () {
let rtbBid = {
bidder: RTB_BIDDER_CODE,
params: {
endpointId: ENDPOINT_ID,
tagId: ENDPOINT_ID,
},
adUnitCode: 'adunit-code',
sizes: [
Expand Down Expand Up @@ -133,7 +133,7 @@ describe('AdmixerAdapter', function () {
{
bidder: bidder,
params: bidder === 'rtbstack' ? {
endpointId: ENDPOINT_ID
tagId: ENDPOINT_ID
} : {
zone: ZONE_ID,
},
Expand Down