@@ -3,35 +3,78 @@ layout: bidder
33title : Adnimation
44description : Prebid Adnimation Bidder Adaptor
55biddercode : adnimation
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
117tcfeu_supported : false
128usp_supported : true
13- coppa_supported : true
9+ coppa_supported : false
1410schain_supported : true
11+ gpp_supported : true
12+ gpp_sids : tcfeu, tcfca, usnat, usstate_all, usp
13+ floors_supported : true
14+ media_types : banner, video
1515prebid_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
1721multiformat_supported : will-bid-on-one
18- floors_supported : false
19- aliasCode : limelightDigital
22+ pbjs : true
23+ pbs : false
2024sidebarType : 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 | ` 'adnimation.trading' ` | ` string ` |
30- | ` adUnitId ` | required | Ad Unit Id will be generated on Adnimation Platform. | ` 42 ` | ` integer ` |
31- | ` adUnitType ` | required | Type of Ad Unit (` 'video' ` , ` 'banner' ` ) | ` 'banner' ` | ` string ` |
32- | ` publisherId ` | required | Publisher ID | ` '12345' ` | ` string ` |
33- | ` custom1 ` | optional | Custom targeting field 1 | ` 'custom1' ` | ` string ` |
34- | ` custom2 ` | optional | Custom targeting field 2 | ` 'custom2' ` | ` string ` |
35- | ` custom3 ` | optional | Custom targeting field 3 | ` 'custom3' ` | ` string ` |
36- | ` custom4 ` | optional | Custom targeting field 4 | ` 'custom4' ` | ` string ` |
37- | ` custom5 ` | optional | Custom targeting field 5 | ` 'custom5' ` | ` string ` |
31+ | Name | Scope | Description | Example | Type |
32+ | ------------| ----------| ---------------------------------------------------------------------------------------------| ------------------------------| ----------|
33+ | ` cId ` | required | The connection ID from Adnimation. | ` '562524b21b1c1f08117fc7f9' ` | ` string ` |
34+ | ` pId ` | required | The publisher ID from Adnimation (pbjs only). | ` '59ac17c192832d0011283fe3' ` | ` string ` |
35+ | ` bidFloor ` | optional | The minimum bid value desired. Adnimation 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 Adnimation. | ` '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: ' adnimation' ,
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: ' adnimation' ,
75+ filter: ' include'
76+ }
77+ }
78+ }
79+ });
80+ ```
0 commit comments