Skip to content

Commit a7ce086

Browse files
Kubitinibretg
andauthored
Add stroeerCore bidder documentation (#1) (prebid#2400)
* Add stroeerCore bidder documenation (#1) * Add bid params table * re-ordered sections also demoted the ad unit config to level 3 instead of level 2 Co-authored-by: bretg <[email protected]>
1 parent 37808ec commit a7ce086

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

dev-docs/bidders/stroeerCore.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
layout: bidder
3+
title: StroeerCore
4+
description: Stroeer Bidder Adapter
5+
biddercode: stroeerCore
6+
media_types: banner
7+
gdpr_supported: false
8+
schain_supported: false
9+
coppa_supported: false
10+
usp_supported: false
11+
tcf2_supported: true
12+
safeframes_ok: true
13+
prebid_member: false
14+
pbjs: true
15+
pbs: false
16+
gvl_id: 136
17+
bidder_supports_deals: true
18+
---
19+
20+
### Bid Params
21+
22+
{: .table .table-bordered .table-striped }
23+
| Name | Scope | Description | Example | Type |
24+
|---------------|----------|--------------------|------------------------------|----------|
25+
| `sid` | required | Slot ID | `'06b782cc-091b-4f53-9cd2-0291679aa1ac'`| `string` |
26+
27+
### Config Notes
28+
29+
* Slot id (`sid`) is required. The adapter will ignore bid requests from prebid if `sid` is not provided. This must be in the decoded form. For example, "1234" as opposed to "MTM0ODA=".
30+
* The server ignores dimensions that are not supported by the slot or by the platform (such as 987x123).
31+
32+
### Ad unit configuration for publishers
33+
34+
```javascript
35+
const adUnits = [{
36+
code: 'div-gpt-ad-1460505748561-0',
37+
mediaTypes: {
38+
banner: {
39+
sizes: [[300, 250]],
40+
}
41+
},
42+
bids: [{
43+
bidder: 'stroeerCore',
44+
params: {
45+
sid: "06b782cc-091b-4f53-9cd2-0291679aa1ac"
46+
}
47+
}]
48+
}];
49+
```

0 commit comments

Comments
 (0)