Skip to content

Commit 880d7fd

Browse files
anna-y-perionAnna Yablonsky
andauthored
Apester adapter (#6448)
* changing adapter doc * using right gvlid * master merge; markdown fix * remove "filename" * pbs: false (just for initial publish) * fix to comment about gpp --------- Co-authored-by: Anna Yablonsky <annay+perion@perion.com>
1 parent 708230f commit 880d7fd

1 file changed

Lines changed: 65 additions & 21 deletions

File tree

dev-docs/bidders/apester.md

Lines changed: 65 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,80 @@
11
---
22
layout: bidder
33
title: Apester
4-
description: Apester Bidder Adaptor
4+
description: Prebid Apester Bidder Adaptor
55
biddercode: apester
6-
pbjs: true
7-
pbs: false
8-
media_types: video, banner
9-
userIds: all
10-
fpd_supported: false
6+
userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId
117
tcfeu_supported: false
128
usp_supported: true
13-
coppa_supported: true
9+
gvl_id: 354
10+
coppa_supported: false
1411
schain_supported: true
12+
gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp
13+
floors_supported: true
14+
media_types: banner, video
1515
prebid_member: false
16-
ortb_blocking_supported: true
16+
safeframes_ok: false
17+
deals_supported: false
18+
pbs_app_supported: false
19+
fpd_supported: false
20+
ortb_blocking_supported: false
1721
multiformat_supported: will-bid-on-one
18-
floors_supported: false
19-
aliasCode: limelightDigital
22+
pbjs: true
23+
pbs: false
2024
sidebarType: 1
2125
---
2226

23-
### Bid Params
27+
## Bid Params for Prebid.js
2428

2529
{: .table .table-bordered .table-striped }
2630

27-
| Name | Scope | Description | Example | Type |
28-
|:-------------|:---------|:--------------------------------------------------|:-------------------------|:----------|
29-
| `host` | required | Ad network's RTB host | `'apester-exchange.com'` | `string` |
30-
| `adUnitId` | required | Ad Unit Id will be generated on Apester Platform. | `42` | `integer` |
31-
| `adUnitType` | required | Type of Ad Unit (`'video'`, `'banner'`) | `'banner'` | `string` |
32-
| `custom1` | optional | Custom targeting field 1 | `'custom1'` | `string` |
33-
| `custom2` | optional | Custom targeting field 2 | `'custom2'` | `string` |
34-
| `custom3` | optional | Custom targeting field 3 | `'custom3'` | `string` |
35-
| `custom4` | optional | Custom targeting field 4 | `'custom4'` | `string` |
36-
| `custom5` | optional | Custom targeting field 5 | `'custom5'` | `string` |
31+
| Name | Scope | Description | Example | Type |
32+
|------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------|
33+
| `cId` | required | The connection ID from Apester. | `'562524b21b1c1f08117fc7f9'` | `string` |
34+
| `pId` | required | The publisher ID from Apester (pbjs only). | `'59ac17c192832d0011283fe3'` | `string` |
35+
| `bidFloor` | optional | The minimum bid value desired. Apester will not respond with bids lower than this value. | `0.90` | `float` |
36+
37+
## Bid Params for Prebid Server
38+
39+
{: .table .table-bordered .table-striped }
40+
41+
| Name | Scope | Description | Example | Type |
42+
|------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------|
43+
| `cId` | required | The connection ID from Apester. | `'562524b21b1c1f08117fc7f9'` | `string` |
44+
45+
### Example
46+
47+
```javascript
48+
var adUnits = [{
49+
code: 'banner-div',
50+
mediaTypes: {
51+
banner: {
52+
sizes: [
53+
[300, 250],
54+
[728, 90]
55+
]
56+
}
57+
},
58+
bids: [{
59+
bidder: 'apester',
60+
params: {
61+
cId: '562524b21b1c1f08117fc7f9', // Required - PROVIDED DURING SETUP...
62+
pId: '59ac17c192832d0011283fe3', // Required - PROVIDED DURING SETUP...
63+
bidFloor: 1.23 // Optional
64+
}
65+
}]
66+
}
67+
];
68+
69+
// configure pbjs to enable user syncing
70+
pbjs.setConfig({
71+
userSync: {
72+
filterSettings: {
73+
iframe: {
74+
bidders: 'apester',
75+
filter: 'include'
76+
}
77+
}
78+
}
79+
});
80+
```

0 commit comments

Comments
 (0)