Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

create bridgeupp.md #5755

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 71 additions & 0 deletions dev-docs/bidders/bridgeupp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
---
layout: bidder
title: Bridgeupp
description: Bridgeupp Bidder Adapter
biddercode: sonarads
tcfeu_supported: true
usp_supported: true
gvl_id: 1300
coppa_supported: true
schain_supported: true
media_types: banner
pbjs: true
pbs_app_supported: true
sidebarType: 1

muuki88 marked this conversation as resolved.
Show resolved Hide resolved
multiformat_supported: will-bid-on-any
safeframes_ok: false
deals_supported: false
floors_supported: true
fpd_supported: false
pbs: false
---

### Note

The Bridgeupp Prebid adapter requires a setup to create a Site IDs. Please contact your Bridgeupp partner manager for setup assistance.
For queries, write to us at <[email protected]>

### Bid Params

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

| Name | Scope | Description | Example | Type |
|---------------|----------|----------------------|----------|----------|
| `siteId` | required | Placement ID | `'1234'` | `string` |
| `bidfloor` | optional | Minimum price in USD | `'1.50'` | `float` |

### First Party Data

Bridgeupp supports both `ortb2` and `ortb2Imp` methods to set [First Party Data](https://docs.prebid.org/features/firstPartyData.html).
Propertis like :

| Name | Scope | Description | Example | Type |
|-------------------|----------|-------------------------------------------------------------------------------------------------|-------------------|----------------|
| `ortb2.site` | optional | Information about the publisher's website provided through an OpenRTB Site object. | N/A | `object` |
| `ortb2.user` | optional | Information about the advertising device's human user, provided through an OpenRTB User object. | N/A | `object` |
| `ortb2.device` | optional | Information about the user's device provided through an OpenRTB device object. | N/A | `object` |
| `ortb2.bcat` | optional | Blocked advertiser categories using the IAB content categories. | `[ "IAB25" ]` | `string array` |
| `ortb2.badv` | optional | Block list of advertisers by their domains | `[ "ford.com" ]` | `string array` |

### Example Ad-Units

## Banner
muuki88 marked this conversation as resolved.
Show resolved Hide resolved

```javascript
var adUnits = [{
code: 'test-div',
mediaTypes: {
banner: {
sizes: [[300, 250], [336, 336]]
}
},
bids: [{
bidder: 'sonarads',
params: {
siteId: 'site-id-example-132', // siteId provided by Bridgeupp
bidfloor: 0.01
}
}]
}];
```
Loading