Skip to content

Commit 82d47a1

Browse files
authored
AdMatic: documenting adrubi alias (prebid#6444)
* added simple params * update * Update admatic.md * update * update * Pixad Bid Adapter: added simple params * AdMatic Adapter: Feature update Pixad alias is included in the update. * Update admatic.md * Update pixad.md * gvl_id add * Update pixad.md * admatic && pixad pbs support true * Create monetixads.md * new alias * new alias * Update adt.md * Revert "Update adt.md" This reverts commit c274c96. * Revert "new alias" This reverts commit cb15f2c. * Create adt.md * Update adt.md * Update adt.md * Update adt.md * Update adt.md * Update adt.md * yobee * Update yobee.md * dev-doc update * Update admaticde.md * Create adrubi.mb * Revert "Create adrubi.mb" This reverts commit 9bf9224. * Create adrubi.md
1 parent 5739ab9 commit 82d47a1

1 file changed

Lines changed: 91 additions & 0 deletions

File tree

dev-docs/bidders/adrubi.md

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
---
2+
layout: bidder
3+
title: AdRubi
4+
description: Prebid AdRubi Bidder Adapter.
5+
pbjs: true
6+
pbs: true
7+
biddercode: adrubi
8+
media_types: banner,video,native
9+
gvl_id: 779 (adt)
10+
tcfeu_supported: true
11+
usp_supported: true
12+
coppa_supported: true
13+
gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp
14+
schain_supported: true
15+
dchain_supported: false
16+
userIds: all
17+
safeframes_ok: true
18+
floors_supported: true
19+
aliasCode: admatic
20+
multiformat_supported: will-bid-on-any
21+
sidebarType: 1
22+
---
23+
24+
### Description
25+
26+
AdRubi header bidding adapter connects with AdRubi demand sources to fetch bids for network ID. Please reach out to your account manager or <support@adrubi.com> for more information.
27+
28+
### Bid params
29+
30+
{: .table .table-bordered .table-striped }
31+
| Name | Scope | Description | Example | Type |
32+
|-------------|----------|-------------------------------------|----------|----------|
33+
| `networkId` | required | The network ID from AdRubi | `12345` | `number` |
34+
| `host` | required | RTB Host | `adrubi.rtb.adrubi.com` | `string` |
35+
36+
### Test Parameters
37+
38+
300x250 banner test
39+
40+
```javascript
41+
var adUnits = [{
42+
code: 'your-slot_1-div',
43+
mediaTypes: {
44+
banner: { sizes: [[300, 250]] },
45+
},
46+
bids: [{
47+
bidder: 'adrubi',
48+
params: {
49+
networkId: 12345,
50+
host: 'adrubi.rtb.adrubi.com'
51+
}
52+
}]
53+
},{
54+
code: 'your-slot_2-div',
55+
mediaTypes: {
56+
native: { ... },
57+
},
58+
bids: [{
59+
bidder: 'adrubi',
60+
params: {
61+
networkId: 12345,
62+
host: 'adrubi.rtb.adrubi.com'
63+
}
64+
}]
65+
},{
66+
code: 'your-slot_3-div',
67+
mediaTypes: {
68+
video: { ... },
69+
},
70+
bids: [{
71+
bidder: 'adrubi',
72+
params: {
73+
networkId: 12345,
74+
host: 'adrubi.rtb.adrubi.com'
75+
}
76+
}]
77+
}];
78+
```
79+
80+
### UserSync example
81+
82+
```javascript
83+
pbjs.setConfig({
84+
userSync: {
85+
iframeEnabled: true,
86+
syncEnabled: true,
87+
syncDelay: 1,
88+
aliasSyncEnabled: true
89+
}
90+
});
91+
```

0 commit comments

Comments
 (0)