|
1 | 1 | --- |
2 | 2 | layout: bidder |
3 | 3 | title: Apester |
4 | | -description: Apester Bidder Adaptor |
| 4 | +description: Prebid Apester Bidder Adaptor |
5 | 5 | 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 |
11 | 7 | tcfeu_supported: false |
12 | 8 | usp_supported: true |
13 | | -coppa_supported: true |
| 9 | +gvl_id: 354 |
| 10 | +coppa_supported: false |
14 | 11 | schain_supported: true |
| 12 | +gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp |
| 13 | +floors_supported: true |
| 14 | +media_types: banner, video |
15 | 15 | 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 |
17 | 21 | multiformat_supported: will-bid-on-one |
18 | | -floors_supported: false |
19 | | -aliasCode: limelightDigital |
| 22 | +pbjs: true |
| 23 | +pbs: false |
20 | 24 | sidebarType: 1 |
21 | 25 | --- |
22 | 26 |
|
23 | | -### Bid Params |
| 27 | +## Bid Params for Prebid.js |
24 | 28 |
|
25 | 29 | {: .table .table-bordered .table-striped } |
26 | 30 |
|
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