Skip to content

Commit a900d31

Browse files
committed
adcluster - new adapter
1 parent 33bba64 commit a900d31

File tree

1 file changed

+70
-0
lines changed

1 file changed

+70
-0
lines changed

dev-docs/bidders/adcluster.md

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
---
2+
layout: bidder
3+
title: Adcluster
4+
description: Prebid Adcluster Bidder Adapter
5+
pbjs: true
6+
pbs: false
7+
biddercode: adcluster
8+
media_types: banner, video
9+
tcfeu_supported: false
10+
usp_supported: false
11+
coppa_supported: false
12+
schain_supported: false
13+
dchain_supported: false
14+
prebid_member: false
15+
safeframes_ok: true
16+
floors_supported: true
17+
multiformat_supported: will-bid-on-any
18+
sidebarType: 1
19+
---
20+
21+
### Description
22+
23+
The Adcluster bidding adapter requires setup & approval before usage. Please reach out to <[email protected]> for more information.
24+
25+
### Bid Params
26+
27+
{: .table .table-bordered .table-striped }
28+
29+
| Name | Scope | Description | Example | Type |
30+
| -------- | -------- | ----------------- | -------------------------------------- | -------- |
31+
| `unitId` | required | Adcluster Unit ID | `10f4f9f3-cc3f-4f20-982d-5cbba92adfdc` | `string` |
32+
33+
### Example
34+
35+
```javascript
36+
const adUnits = [
37+
{
38+
code: "adcluster-banner",
39+
mediaTypes: {
40+
banner: {
41+
sizes: [[300, 250]],
42+
},
43+
},
44+
bids: [
45+
{
46+
bidder: "adcluster",
47+
params: {
48+
unitId: "42d1f525-5792-47a6-846d-1825e53c97d6",
49+
},
50+
},
51+
],
52+
},
53+
{
54+
code: "adcluster-video",
55+
mediaTypes: {
56+
video: {
57+
playerSize: [[640, 480]],
58+
},
59+
},
60+
bids: [
61+
{
62+
bidder: "adcluster",
63+
params: {
64+
unitId: "37dd91b2-049d-4027-94b9-d63760fc10d3",
65+
},
66+
},
67+
],
68+
},
69+
];
70+
```

0 commit comments

Comments
 (0)