Skip to content

Commit

Permalink
AdButler Bid Adapter: Add Doceree as alias (#5598)
Browse files Browse the repository at this point in the history
  • Loading branch information
dharton authored Aug 17, 2020
1 parent db02d8a commit 84e2361
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
2 changes: 1 addition & 1 deletion modules/adbutlerBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const BIDDER_CODE = 'adbutler';
export const spec = {
code: BIDDER_CODE,
pageID: Math.floor(Math.random() * 10e6),
aliases: ['divreach'],
aliases: ['divreach', 'doceree'],

isBidRequestValid: function (bid) {
return !!(bid.params.accountID && bid.params.zoneID);
Expand Down
32 changes: 32 additions & 0 deletions modules/docereeBidAdapter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Overview

Module Name: Doceree Bidder Adapter
Module Type: Bidder Adapter

# Description

Connects to Doceree demand source to fetch bids.
Please use ```doceree``` as the bidder code.

# Test Parameters
```
var adUnits = [
{
code: 'desktop-banner-ad-div',
sizes: [[300, 250]],
bids: [
{
bidder: "doceree",
params: {
accountID: '167283',
zoneID: '445501',
domain: 'adbserver.doceree.com',
extra: {
tuid: '1234-abcd'
}
}
}
]
},
];
```

0 comments on commit 84e2361

Please sign in to comment.