Skip to content

Commit

Permalink
New Bid Adapter Dev Docs: newspassid (#3849)
Browse files Browse the repository at this point in the history
* Dev Documents for New Bid Adapter NewsPassId

Prebid JS dev documents for Dev Documents for New Bid Adapter NewspassId

* Dev Doc for new bidder: newspassid

correct floor price module support flag.

* dev docs for new bid adapter newspassid

Updated dev docs

* newspass dev docs updated

updated error in bidder code in test params

* Delete newspassid.md

removing file at the root of the repo

* Update newspassid.md

* Update newspassid.md

* Update newspassid.md
  • Loading branch information
newspassid-prebid authored Jul 14, 2022
1 parent df08f5b commit 92c1a49
Showing 1 changed file with 76 additions and 0 deletions.
76 changes: 76 additions & 0 deletions dev-docs/bidders/newspassid.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
---
Module Name: NewspassId Bidder Adapter
Module Type: Bidder Adapter
Maintainer: [email protected]
layout: bidder
title: Newspass ID
description: LMC Newspass ID Prebid JS Bidder Adapter
biddercode: newspassid
gdpr_supported: false
gvl_id: none
usp_supported: true
coppa_supported: false
schain_supported: true
dchain_supported: false
userIds: criteo, id5Id, tdid, identityLink, liveIntentId, parrableId, pubCommonId, lotamePanoramaId, sharedId, fabrickId
media_types: banner
safeframes_ok: true
deals_supported: true
floors_supported: false
fpd_supported: false
pbjs: true
pbs: false
prebid_member: false
multiformat_supported: will-bid-on-any
---

### Description

LMC Newspass ID Prebid JS Bidder Adapter that connects to the NewspassId demand source(s).

The Newspass bid adapter supports Banner mediaTypes ONLY.
This is intended for USA audiences only, and does not support GDPR


### Bid Params

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

| Name | Scope | Description | Example | Type |
|-----------|----------|---------------------------|------------|----------|
| `siteId` | required | The site ID. | `"NPID0000001"` | `string` |
| `publisherId` | required | The publisher ID. | `"4204204201"` | `string` |
| `placementId` | required | The placement ID. | `"0420420421"` | `string` |
| `customData` | optional | publisher key-values used for targeting | `[{"settings":{},"targeting":{"key1": "value1", "key2": "value2"}}], ` | `array` |

### Test Parameters


A test ad unit that will consistently return test creatives:

```
//Banner adUnit
adUnits = [{
code: 'id-of-your-banner-div',
mediaTypes: {
banner: {
sizes: [[300, 250], [300,600]]
}
},
bids: [{
bidder: 'newspassid',
params: {
publisherId: 'NEWSPASS0001', /* an ID to identify the publisher account - required */
siteId: '4204204201', /* An ID used to identify a site within a publisher account - required */
placementId: '8000000015', /* an ID used to identify the piece of inventory - required - for appnexus test use 13144370. */
customData: [{"settings": {}, "targeting": {"key": "value", "key2": ["value1", "value2"]}}],/* optional array with 'targeting' placeholder for passing publisher specific key-values for targeting. */
}
}]
}];
```

### Note:

Please contact us at [email protected] for any assistance testing your implementation before going live into production.

0 comments on commit 92c1a49

Please sign in to comment.