Skip to content

Commit

Permalink
create bridgeupp.md (#5755)
Browse files Browse the repository at this point in the history
* create bridgeupp.md

* create bridgeupp.md

* Minor formatting changes

---------

Co-authored-by: Muki Seiler <[email protected]>
  • Loading branch information
sharon-bridgeupp and muuki88 authored Jan 1, 2025
1 parent dbad014 commit dfec92c
Showing 1 changed file with 70 additions and 0 deletions.
70 changes: 70 additions & 0 deletions dev-docs/bidders/bridgeupp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
---
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
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

```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
}
}]
}];
```

0 comments on commit dfec92c

Please sign in to comment.