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

Pixad Bidder PR Doc #4130

Merged
merged 13 commits into from
Nov 22, 2022
11 changes: 8 additions & 3 deletions dev-docs/bidders/admatic.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
---
layout: bidder
title: AdMatic
description: Prebid AdMatica Bidder Adapter.
description: Prebid AdMatic Bidder Adapter.
pbjs: true
pbs: false
biddercode: admatic
media_types: banner,video
gdpr_supported: false
Expand All @@ -22,9 +23,11 @@ AdMatic header bidding adapter connects with AdMatic demand sources to fetch bid

### Bid params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|--------------|----------|------------------------------------|------------|----------|
| `networkId` | required | The network ID from AdMatic | `12345` | `number` |
| `host` | required | RTB Host | `layer.serve.admatic.com.tr` | `string` |

### Test Parameters

Expand All @@ -36,7 +39,8 @@ var adUnits = [{
bids: [{
bidder: 'admatic',
params: {
networkId: 12345
networkId: 12345,
host: 'layer.serve.admatic.com.tr'
}
}]
},{
Expand All @@ -45,7 +49,8 @@ var adUnits = [{
bids: [{
bidder: 'admatic',
params: {
networkId: 12345
networkId: 12345,
host: 'layer.serve.admatic.com.tr'
}
}]
}];
Expand Down
70 changes: 70 additions & 0 deletions dev-docs/bidders/pixad.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
---
layout: bidder
title: Pixad
description: Prebid Pixad Bidder Adapter.
pbjs: true
pbs: false
biddercode: pixad
media_types: banner,video
gdpr_supported: false
usp_supported: false
coppa_supported: false
schain_supported: false
dchain_supported: false
userIds: criteo, id5Id, sharedId, unifiedId
safeframes_ok: true
floors_supported: false
aliasCode: admatic
multiformat_supported: will-bid-on-any
fatihkaya84 marked this conversation as resolved.
Show resolved Hide resolved
---

### Description

Pixad header bidding adapter connects with Pixad demand sources to fetch bids for banner network ID. Please reach out to your account manager or <prebid@pixad.com.tr> for more information.

### Bid params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|-------------|----------|-------------------------------------|----------|----------|
| `networkId` | required | The network ID from Pixad | `12345` | `number` |
| `host` | required | RTB Host | `rtb.network.pixad.com.tr` | `string` |

### Test Parameters

300x250 banner test
```
var adUnits = [{
code: 'your-slot_1-div', //use exactly the same code as your slot div id.
sizes: [[300, 250]],
bids: [{
bidder: 'pixad',
params: {
networkId: 12345,
host: 'rtb.network.pixad.com.tr'
}
}]
},{
code: 'your-slot_2-div', //use exactly the same code as your slot div id.
sizes: [[600, 800]],
bids: [{
bidder: 'pixad',
params: {
networkId: 12345,
host: 'rtb.network.pixad.com.tr'
}
}]
}];
```

## UserSync example

```
pbjs.setConfig({
userSync: {
iframeEnabled: true,
syncEnabled: true,
syncDelay: 1
}
});
```