Skip to content

Commit

Permalink
browsi bid adapter (prebid#4377)
Browse files Browse the repository at this point in the history
  • Loading branch information
itamaravady-browsi authored and ecdrsvc committed Sep 6, 2023
1 parent 3463556 commit 1ec02d5
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions dev-docs/bidders/browsi.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
layout: bidder
title: Browsi
description: Prebid Browsi Bidder Adapter
biddercode: browsi
pbjs: true
gvl_id: 329
gdpr_supported: true
usp_supported: true
media_types: no-display, video
schain_supported: true
safeframes_ok: true
gvl_id: 329
sidebarType: 1
---

### Note:
For more information about [Browsi](https://www.browsi.com), please contact [[email protected]]([email protected]).

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|------------------|----------|------------------|------------------------------|----------|
| `pubId` | required | Publisher ID | `'117a476f-9791-4a82-80db-4c01c1683db0'` | `string` |
| `tagId` | required | Tag ID | `'1'` | `string` |

# Sample Ad Unit: For Publishers
```javascript
let videoAdUnit = [
{
code: 'videoAdUnit',
mediaTypes: {
video: {
playerSize: [[300, 250]],
context: 'outstream'
},
},
bids: [{
bidder: 'browsi',
params: {
pubId: '117a476f-9791-4a82-80db-4c01c1683db0', // Publisher ID provided by Browsi
tagId: '1' // Tag ID provided by Browsi
}
}]
}];
```

0 comments on commit 1ec02d5

Please sign in to comment.