You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Start.io bidder adapter requires additional setup and approval from the Start.io team. For additional information, please reach out to <prebid@start.io>.
|`publisherId`| required | Publisher ID |`'publisher-1234'`|`string`|
35
+
36
+
#### Configuration
37
+
38
+
Sample banner setup:
39
+
40
+
```js
41
+
var adUnits = [
42
+
{
43
+
code:"div-gpt-ad-12345-0",
44
+
mediaTypes: {
45
+
banner: {
46
+
sizes: [[300, 250]]
47
+
}
48
+
},
49
+
bids: [
50
+
{
51
+
bidder:"startio",
52
+
params: {
53
+
publisherId:"publisher-12345"
54
+
}
55
+
}
56
+
]
57
+
}
58
+
]
59
+
60
+
pbjs.que.push(function() {
61
+
pbjs.addAdUnits(adUnits);
62
+
});
63
+
```
64
+
65
+
### Additional Notes
66
+
67
+
#### Request and Response Attributes
68
+
69
+
- Bids are returned in **net** - that is, the bids returned reflect the bid amount with revenue sharing already taken into account. No adjustment is necessary.
0 commit comments