Skip to content

Commit 17b02f2

Browse files
New Adapter: Start.io (prebid#6018)
* Add initial documentation for Start.io adapters * Adjustments based on review comments
1 parent b69a8a2 commit 17b02f2

1 file changed

Lines changed: 69 additions & 0 deletions

File tree

dev-docs/bidders/startio.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
---
2+
layout: bidder
3+
title: Start.io
4+
biddercode: startio
5+
description: Prebid Start.io Adapter
6+
tcfeu_supported: true
7+
coppa_supported: false
8+
gpp_supported: false
9+
floors_supported: false
10+
media_types: banner, video, native
11+
multiformat_supported: will-bid-on-any
12+
safeframes_ok: false
13+
schain_supported: false
14+
gvl_id: 1216
15+
usp_supported: false
16+
pbjs: true
17+
pbs: true
18+
prebid_member: false
19+
fpd_supported: false
20+
privacy_sandbox: no
21+
ortb_blocking_supported: false
22+
sidebarType: 1
23+
---
24+
25+
### Before You Begin
26+
27+
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>.
28+
29+
### Bid Params
30+
31+
{: .table .table-bordered .table-striped }
32+
| Name | Scope | Description | Example | Type |
33+
|---------------|----------|-----------------------------------|------------------------|--------------|
34+
| `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

Comments
 (0)