diff --git a/dev-docs/bidders/1accord.md b/dev-docs/bidders/1accord.md index 9c99e0720a..680f299fc0 100644 --- a/dev-docs/bidders/1accord.md +++ b/dev-docs/bidders/1accord.md @@ -19,6 +19,7 @@ safeframes_ok: true deals_supported: true sidebarType: 1 fpd_supported: true +multiformat_supported: will-bid-on-any --- diff --git a/dev-docs/bidders/easybid.md b/dev-docs/bidders/easybid.md index 7f1ca702bd..478aea2043 100644 --- a/dev-docs/bidders/easybid.md +++ b/dev-docs/bidders/easybid.md @@ -18,6 +18,7 @@ safeframes_ok: true deals_supported: true sidebarType: 1 fpd_supported: true +multiformat_supported: will-bid-on-any --- diff --git a/dev-docs/bidders/nexx360.md b/dev-docs/bidders/nexx360.md index 8e4f5a5bc9..9eeca65cee 100644 --- a/dev-docs/bidders/nexx360.md +++ b/dev-docs/bidders/nexx360.md @@ -4,16 +4,21 @@ title: Nexx360 description: Prebid Nexx360 Bidder Adapter pbjs: true biddercode: nexx360 +gvl_id: 965 tcfeu_supported: true usp_supported: true +gpp_supported: true schain_supported: true +dchain_supported: false floors_supported: true userIds: all -tcf2_supported: true +tcfeu_supported: true media_types: banner, video, native -gvl_id: 965 -pbs: false +safeframes_ok: true +deals_supported: true sidebarType: 1 +fpd_supported: true +multiformat_supported: will-bid-on-any --- @@ -22,9 +27,9 @@ sidebarType: 1 {: .table .table-bordered .table-striped } | Name | Scope | Description | Example | Type | |---------------|----------|----------------------------|-------------------------------------- |-----------| -| `tagId` | required | Nexx360 tag ID | `"luvxjvgn"` | `string` | -| `videoTagId` | optional | Nexx360 Video tag ID | `"luvxjvgn"` | `string` | -| `nativeTagId` | optional | Nexx360 Native tag ID | `"luvxjvgn"` | `string` | +| `tagId` | required | Nexx360 tag ID | `"testnexx"` | `string` | +| `videoTagId` | optional | Nexx360 Video tag ID | `"testnexx"` | `string` | +| `nativeTagId` | optional | Nexx360 Native tag ID | `"testnexx"` | `string` | | `allBids` | optional | Return all bids | `true` | `boolean` | | `divId` | optional | divId linked to adUnit | `"div-1"` | `string` | | `adUnitName` | optional | A code to identify adUnit | `"header-ad"` | `string` | @@ -63,7 +68,7 @@ var adUnits = [ bids: [{ bidder: 'nexx360', params: { - tagId: 'luvxjvgn' + tagId: 'testnexx' } }] }, @@ -79,7 +84,7 @@ var adUnits = [ bids: [{ bidder: 'nexx360', params: { - tagId: 'luvxjvgn' + tagId: 'testnexx' } }] }, @@ -102,7 +107,7 @@ var adUnits = [ bids: [{ bidder: 'nexx360', params: { - tagId: 'luvxjvgn' + tagId: 'testnexx' } }] }, @@ -124,8 +129,8 @@ var adUnits = [ bids: [{ bidder: 'nexx360', params: { - tagId: 'luvxjvgn', - videoTagId: 'luvxjvgn' + tagId: 'testnexx', + videoTagId: 'testnexx' } }] }; diff --git a/dev-docs/bidders/prismassp.md b/dev-docs/bidders/prismassp.md new file mode 100644 index 0000000000..d257868412 --- /dev/null +++ b/dev-docs/bidders/prismassp.md @@ -0,0 +1,121 @@ +--- +layout: bidder +title: Prismassp +description: Prebid Prismassp Bidder Adapter +pbjs: true +biddercode: prismassp +gvl_id: 965 +tcfeu_supported: true +usp_supported: true +gpp_supported: true +schain_supported: true +dchain_supported: false +floors_supported: true +userIds: all +tcfeu_supported: true +media_types: banner, video, native +safeframes_ok: true +deals_supported: true +sidebarType: 1 +fpd_supported: true +multiformat_supported: will-bid-on-any + +--- + +### Bid Params + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|---------------|----------|----------------------------|-------------------------------------- |-----------| +| `tagId` | required | tag ID | `"testpris"` | `string` | + +### First Party Data + +Publishers should use the `ortb2` method of setting [First Party Data](/features/firstPartyData.html). +The following fields are supported: + +* ortb2.site.ext.data.* +* ortb2.site.content.data[] +* ortb2.user.ext.data.* +* ortb2.user.data[] + +### Test Parameters + +```javascript +var adUnits = [ + // Banner adUnit + { + code: 'banner-div', + mediaTypes: { + banner: { + sizes: [[300, 250], [300,600]] + } + }, + bids: [{ + bidder: 'prismassp', + params: { + tagId: 'testpris' + } + }] + }, + // Video adUnit + { + code: 'video1', + mediaTypes: { + video: { + playerSize: [640, 480], + context: 'instream' + } + }, + bids: [{ + bidder: 'prismassp', + params: { + tagId: 'testpris' + } + }] + }, + // Native adUnit + { + code: 'native1', + mediaTypes: + native: { + title: { + required: true + }, + image: { + required: true + }, + sponsoredBy: { + required: true + } + } + }, + bids: [{ + bidder: 'prismassp', + params: { + tagId: 'testpris' + } + }] + }, + // Multiformat Ad + { + code: 'multi1', + mediaTypes: { + video: { + playerSize: [640, 480], + context: 'instream' + }, + banner: { + sizes: [[300, 250], [300,600]] + } + }, + bids: [{ + bidder: 'prismassp', + params: { + tagId: 'testpris', + videoTagId: 'testpris' + } + }] + }; +]; +```