Skip to content

Commit d4fce11

Browse files
authored
IlluminBidAdapter (prebid#4813)
* added gpp_supported: true * added illuminBidAdapter docs * Remove wrong gvlid
1 parent b722e2c commit d4fce11

1 file changed

Lines changed: 70 additions & 0 deletions

File tree

dev-docs/bidders/illumin.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: Illumin
4+
description: Prebid Illumin Bidder Adaptor
5+
biddercode: illumin
6+
filename: illuminBidAdapter
7+
userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId
8+
tcfeu_supported: true
9+
usp_supported: true
10+
coppa_supported: false
11+
schain_supported: true
12+
gpp_supported: true
13+
floors_supported: true
14+
media_types: banner, video
15+
prebid_member: false
16+
safeframes_ok: false
17+
deals_supported: false
18+
pbs_app_supported: false
19+
fpd_supported: false
20+
ortb_blocking_supported: false
21+
multiformat_supported: will-bid-on-one
22+
pbjs: true
23+
sidebarType: 1
24+
---
25+
26+
### Bid Params
27+
28+
{: .table .table-bordered .table-striped }
29+
| Name | Scope | Description | Example | Type |
30+
|------------|----------|-------------------------------------------------------------------------------------------|------------------------------|----------|
31+
| `cId` | required | The connection ID from Illumin. | `'562524b21b1c1f08117fc7f9'` | `string` |
32+
| `pId` | required | The publisher ID from Illumin. | `'59ac17c192832d0011283fe3'` | `string` |
33+
| `bidFloor` | optional | The minimum bid value desired. Illumin will not respond with bids lower than this value. | `0.90` | `float` |
34+
35+
## Example
36+
37+
```javascript
38+
var adUnits = [{
39+
code: 'banner-div',
40+
mediaTypes: {
41+
banner: {
42+
sizes: [
43+
[300, 250],
44+
[728, 90]
45+
]
46+
}
47+
},
48+
bids: [{
49+
bidder: 'illumin',
50+
params: {
51+
cId: '562524b21b1c1f08117fc7f9', // Required - PROVIDED DURING SETUP...
52+
pId: '59ac17c192832d0011283fe3', // Required - PROVIDED DURING SETUP...
53+
bidFloor: 1.23 // Optional
54+
}
55+
}]
56+
}
57+
];
58+
59+
// configure pbjs to enable user syncing
60+
pbjs.setConfig({
61+
userSync: {
62+
filterSettings: {
63+
iframe: {
64+
bidders: 'illumin',
65+
filter: 'include'
66+
}
67+
}
68+
}
69+
});
70+
```

0 commit comments

Comments
 (0)