Skip to content

Commit

Permalink
New Bidder: dexerto (#5573)
Browse files Browse the repository at this point in the history
* New Bidder: dexerto

* removed domain as requested
  • Loading branch information
pranavsheth authored Oct 11, 2024
1 parent 0b5c300 commit 4b1c34e
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions dev-docs/bidders/dexerto.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
---
layout: bidder
title: Dexerto
description: Prebid dexerto Bidder Adaptor
pbjs: true
biddercode: dexerto
media_types: banner
tcfeu_supported: false
usp_supported: true
coppa_supported: true
gpp_sids: usstate_all
schain_supported: false
safeframes_ok: false
ortb_blocking_supported: false
dsa_supported: false
deals_supported: true
floors_supported: true
sidebarType: 1
---

### Bid Params

| Name | Scope | Description | Example | Type |
|---------------|-----------|-----------------------|----------------|----------|
| `placement_id`| mandatory | Placement Id | `110003` | `number` |
| `height` | optional | Height of the creative| `250` | `number` |
| `width` | optional | Width of the creative | `300` | `number` |
| `bid_floor` | optional | Bid Floor Price | `0.5` | `decimal`|

### AdUnit Format for Banner

```javascript
var adUnits = [
{
code: 'display-ad',
mediaTypes: {
banner: {
sizes: [[300, 250]]
}
},
bids: [{
bidder: 'dexerto',
params: {
placement_id: 110003,
height: 250,
width: 300,
bid_floor: 0.5
}
}]
}
];
```

0 comments on commit 4b1c34e

Please sign in to comment.