Skip to content

Commit 0b96089

Browse files
mihanikw2gmuuki88
andauthored
Asterio docs: add bidder documentation (#6521)
* Asterio docs: add bidder documentation * Asterio docs: fix markdownlint issues * Asterio docs: simplify table formatting * Asterio docs: add meta data * Update dev-docs/bidders/asterio.md Co-authored-by: Muki Seiler <muuki88@users.noreply.github.com> --------- Co-authored-by: Muki Seiler <muuki88@users.noreply.github.com>
1 parent e006ecb commit 0b96089

1 file changed

Lines changed: 78 additions & 0 deletions

File tree

dev-docs/bidders/asterio.md

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
---
2+
layout: bidder
3+
title: Asterio
4+
description: Prebid Asterio Bidder Adapter
5+
biddercode: asterio
6+
pbjs: true
7+
pbs: false
8+
media_types: banner, video
9+
tcfeu_supported: false
10+
dsa_supported: false
11+
gvl_id: none
12+
usp_supported: false
13+
coppa_supported: false
14+
gpp_sids: none
15+
schain_supported: true
16+
dchain_supported: false
17+
userId: none
18+
safeframes_ok: false
19+
deals_supported: true
20+
floors_supported: true
21+
fpd_supported: false
22+
prebid_member: false
23+
multiformat_supported: will-bid-on-any
24+
ortb_blocking_supported: partial
25+
sidebarType: 1
26+
---
27+
28+
## Bid Params
29+
30+
{: .table .table-bordered .table-striped }
31+
32+
| Name | Scope | Description | Example | Type |
33+
| --- | --- | --- | --- | --- |
34+
| `adUnitToken` | required | Ad unit token provided by Asterio. | `'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'` | `string` |
35+
| `pos` | optional | Ad position hint. Allowed values follow OpenRTB position conventions, e.g. above the fold: `1`, below the fold: `3`, middle of the fold: `7`. | `1` | `integer` |
36+
37+
## Banner Test Ad Unit
38+
39+
```javascript
40+
var adUnits = [{
41+
code: 'test-banner',
42+
mediaTypes: {
43+
banner: {
44+
sizes: [[300, 250]]
45+
}
46+
},
47+
bids: [{
48+
bidder: 'asterio',
49+
params: {
50+
adUnitToken: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
51+
}
52+
}]
53+
}];
54+
```
55+
56+
## Video Test Ad Unit
57+
58+
```javascript
59+
var adUnits = [{
60+
code: 'test-video',
61+
mediaTypes: {
62+
video: {
63+
context: 'outstream',
64+
playerSize: [640, 360],
65+
mimes: ['video/mp4'],
66+
protocols: [2, 3],
67+
playbackmethod: [2],
68+
plcmt: 4
69+
}
70+
},
71+
bids: [{
72+
bidder: 'asterio',
73+
params: {
74+
adUnitToken: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
75+
}
76+
}]
77+
}];
78+
```

0 commit comments

Comments
 (0)