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

Bidmatic Bid Adapter: initial release #5391

Merged
merged 3 commits into from
Jun 28, 2024
Merged
Changes from all 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
60 changes: 60 additions & 0 deletions dev-docs/bidmatic.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
---
layout: bidder
title: Bidmatic Bid Adapter
description: Prebid example Bidder Adapter
biddercode: bidmatic
tcfeu_supported: true
dsa_supported: true
gvl_id: 1134
usp_supported: true
coppa_supported: true
gpp_sids: tcfeu, usp
schain_supported: true
dchain_supported: false
userId: all
media_types: banner, video
safeframes_ok: true
deals_supported: false
floors_supported: true
fpd_supported: true
pbjs: true
pbs: true
prebid_member: false
multiformat_supported: will-bid-on-one
ortb_blocking_supported: true
sidebarType: 1
---

### Note

Unleash the power of fast client-oRTB connection.
Contact us at [[email protected]](mailto:[email protected]).

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|-----------------------|-----------|-----------|
| `source` | required | Traffic source origin id | `'11111'` | `int` |

### Test Parameters

``` javascript
var adUnits = [
// Banner adUnit
{
code: 'elemtId',
mediaTypes:{
banner:{
sizes: [[300, 250]]
}
}
bids: [{
bidder: 'bidmatic',
params: {
source: 886409
}
}]
}
];
```
Loading