Skip to content

Commit

Permalink
Add DistroScale Bid Adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
duancg committed Mar 25, 2022
1 parent 6e09447 commit b483057
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions dev-docs/bidders/distroscale.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
layout: bidder
title: DistroScale
description: Prebid DistroScale Bidder Adaptor
biddercode: distroscale
media_types: banner
pbjs: true
pbs: false
gdpr_supported: true
usp_supported: true
coppa_supported: true
schain_supported: true
fpd_supported: true
userIds: all
floors_supported: true
safeframes_ok: false
prebid_member: true
gvl_id: 754
---

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|--------------------|-----------------|----------|
| `pubid` | required | Publisher ID | `'12345'` | `string` |
| `zoneid` | optional | Zone ID | `'67890'` | `string` |


### Prebid Test Request

```
var adUnits = [{
code: 'banner-1',
mediaTypes: {
banner: {
sizes: [[300, 250]],
}
},
bids: [{
bidder: 'distroscale',
params: {
pubid: '12345' // required, must be a string
,zoneid: '67890' // optional, must be a string
}
}]
}];
```

These test parameters can be used to verify that the DistroScale adapter is working properly. This example includes a DistroScale test publisher ID, an optional zone ID and sizes that would match with the test creative.

0 comments on commit b483057

Please sign in to comment.