From b483057aa2b8e949929cd7987eb3227db3c01d8c Mon Sep 17 00:00:00 2001 From: Chenggang Duan Date: Fri, 25 Mar 2022 15:17:41 -0700 Subject: [PATCH] Add DistroScale Bid Adapter --- dev-docs/bidders/distroscale.md | 50 +++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 dev-docs/bidders/distroscale.md diff --git a/dev-docs/bidders/distroscale.md b/dev-docs/bidders/distroscale.md new file mode 100644 index 0000000000..9ae2f745c9 --- /dev/null +++ b/dev-docs/bidders/distroscale.md @@ -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.