Skip to content

Commit

Permalink
Add stroeerCore bidder documentation (#1) (prebid#2400)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
Kubitini and bretg authored Oct 14, 2020
1 parent 37808ec commit a7ce086
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions dev-docs/bidders/stroeerCore.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
layout: bidder
title: StroeerCore
description: Stroeer Bidder Adapter
biddercode: stroeerCore
media_types: banner
gdpr_supported: false
schain_supported: false
coppa_supported: false
usp_supported: false
tcf2_supported: true
safeframes_ok: true
prebid_member: false
pbjs: true
pbs: false
gvl_id: 136
bidder_supports_deals: true
---

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|--------------------|------------------------------|----------|
| `sid` | required | Slot ID | `'06b782cc-091b-4f53-9cd2-0291679aa1ac'`| `string` |

### Config Notes

* 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=".
* The server ignores dimensions that are not supported by the slot or by the platform (such as 987x123).

### Ad unit configuration for publishers

```javascript
const adUnits = [{
code: 'div-gpt-ad-1460505748561-0',
mediaTypes: {
banner: {
sizes: [[300, 250]],
}
},
bids: [{
bidder: 'stroeerCore',
params: {
sid: "06b782cc-091b-4f53-9cd2-0291679aa1ac"
}
}]
}];
```

0 comments on commit a7ce086

Please sign in to comment.