Skip to content

Commit c0f5d11

Browse files
gpolaertmuuki88
andauthored
Add Pubstack bidder documentation (#1) (prebid#6438)
* Add Pubstack bidder documentation (#1) * Add Pubstack bidder documentation page * Enhance Pubstack bidder adapter documentation Updated Pubstack bidder documentation with new fields and types. * Update Pubstack bidder documentation with new fields * Update dev-docs/bidders/pubstack.md Co-authored-by: Muki Seiler <muuki88@users.noreply.github.com> * Update dev-docs/bidders/pubstack.md Co-authored-by: Muki Seiler <muuki88@users.noreply.github.com> --------- Co-authored-by: Muki Seiler <muuki88@users.noreply.github.com>
1 parent 3bc803c commit c0f5d11

1 file changed

Lines changed: 81 additions & 0 deletions

File tree

dev-docs/bidders/pubstack.md

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
---
2+
layout: bidder
3+
title: Pubstack
4+
description: Prebid Pubstack Bidder Adapter
5+
biddercode: pubstack
6+
prebid_member: true
7+
pbjs: true
8+
pbs: true
9+
gvl_id: 1408
10+
media_types: banner, video, native
11+
multiformat_supported: will-bid-on-any
12+
tcfeu_supported: true
13+
usp_supported: true
14+
gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp
15+
coppa_supported: true
16+
userId: all
17+
schain_supported: true
18+
dchain_supported: true
19+
fpd_supported: true
20+
floors_supported: true
21+
deals_supported: true
22+
safeframes_ok: true
23+
privacy_sandbox: paapi, topics
24+
ortb_blocking_supported: true
25+
sidebarType: 1
26+
---
27+
28+
### Integration Note
29+
30+
The Pubstack bidding adapter requires setup and approval before use. Contact your Pubstack account team to enable production traffic.
31+
32+
### Bid Params
33+
34+
{: .table .table-bordered .table-striped }
35+
36+
| Name | Scope | Description | Example | Type |
37+
| --- | --- | --- | --- | --- |
38+
| `siteId` | required | Pubstack site identifier. | `'example-site-id'` | `string \| uuid` |
39+
| `adUnitName` | required | Pubstack ad unit name associated with the placement. | `'homepage-top-banner'` | `string` |
40+
41+
### Test Parameters
42+
43+
```javascript
44+
var adUnits = [
45+
{
46+
code: 'test-div-1',
47+
mediaTypes: {
48+
banner: {
49+
sizes: [[300, 250]]
50+
}
51+
},
52+
bids: [
53+
{
54+
bidder: 'pubstack',
55+
params: {
56+
siteId: 'example-site-id',
57+
adUnitName: 'homepage-top-banner'
58+
}
59+
}
60+
]
61+
},
62+
{
63+
code: 'test-video-div',
64+
mediaTypes: {
65+
video: {
66+
playerSize: [[640, 360]],
67+
context: 'outstream'
68+
}
69+
},
70+
bids: [
71+
{
72+
bidder: 'pubstack',
73+
params: {
74+
siteId: 'example-site-id',
75+
adUnitName: 'article-video-slot'
76+
}
77+
}
78+
]
79+
}
80+
];
81+
```

0 commit comments

Comments
 (0)