Skip to content

Commit

Permalink
[TECH-6244] fix: add gvlid to adot adapter (#11) (prebid#10975)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramyferjaniadot authored and Kevin Siow committed Mar 1, 2024
1 parent 6944f28 commit 6256236
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/adotBidAdapter.js
Original file line number Diff line number Diff line change
@@ -9,6 +9,7 @@ import { convertOrtbRequestToProprietaryNative } from '../src/native.js';

const BIDDER_CODE = 'adot';
const ADAPTER_VERSION = 'v2.0.0';
const GVLID = 272;
const BID_METHOD = 'POST';
const BIDDER_URL = 'https://dsp.adotmob.com/headerbidding{PUBLISHER_PATH}/bidrequest';
const REQUIRED_VIDEO_PARAMS = ['mimes', 'protocols'];
@@ -635,7 +636,8 @@ export const spec = {
isBidRequestValid,
buildRequests,
interpretResponse,
getFloor
getFloor,
gvlid: GVLID
};

registerBidder(spec);

0 comments on commit 6256236

Please sign in to comment.