From 02ff47c756a8d136260d7a531becb1dd1e6ca0e0 Mon Sep 17 00:00:00 2001 From: Ilia Medvedev Date: Fri, 17 May 2024 05:07:03 +0400 Subject: [PATCH] AdsYield Bid Adapter: move to limelight (#5318) --- dev-docs/bidders/adsyield.md | 37 ++++++++++++++++++++++++------------ 1 file changed, 25 insertions(+), 12 deletions(-) diff --git a/dev-docs/bidders/adsyield.md b/dev-docs/bidders/adsyield.md index 206de70f15..e1968b5567 100644 --- a/dev-docs/bidders/adsyield.md +++ b/dev-docs/bidders/adsyield.md @@ -2,14 +2,21 @@ layout: bidder title: AdsYield description: Prebid AdsYield Bidder Adaptor +biddercode: adsyield pbjs: true pbs: true -biddercode: adsyield -aliasCode: admixer -media_types: video -gvl_id: 1199 -tcfeu_supported: true +media_types: video, banner +userIds: all +fpd_supported: false +tcfeu_supported: false usp_supported: true +coppa_supported: true +schain_supported: true +prebid_member: false +ortb_blocking_supported: true +multiformat_supported: will-bid-on-one +floors_supported: false +aliasCode: limelightDigital sidebarType: 1 --- @@ -17,12 +24,18 @@ sidebarType: 1 {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|---------------|----------|-----------------------------------------------------------------------------------------------------------------|------------------------------------------|-----------| -| `zone` | required | The unique identifier of the ad placement. Could be obtained from the AdsYield UI or from your account manager. | `'e5ff8e48-4bd0-4a2c-9236-55530ab8981d'` | `string` | -| `host` | required | Ad network's RTB host | `'open-adsyield.com'` | `string` | -| `publisherId` | required | Publisher ID | `12345` | `integer` | +| Name | Scope | Description | Example | Type | +|---------------|----------|----------------------------------------------------|-----------------------|-----------| +| `host` | required | Ad network's RTB host | `'open-adsyield.com'` | `string` | +| `adUnitId` | required | Ad Unit Id will be generated on AdsYield Platform. | `42` | `integer` | +| `adUnitType` | required | Type of Ad Unit (`'video'`, `'banner'`) | `'banner'` | `string` | +| `publisherId` | required | Publisher ID | `12345` | `integer` | +| `custom1` | optional | Custom targeting field 1 | `'custom1'` | `string` | +| `custom2` | optional | Custom targeting field 2 | `'custom2'` | `string` | +| `custom3` | optional | Custom targeting field 3 | `'custom3'` | `string` | +| `custom4` | optional | Custom targeting field 4 | `'custom4'` | `string` | +| `custom5` | optional | Custom targeting field 5 | `'custom5'` | `string` | -Adsyield server-side Prebid Server adapter requires only `publisherId` and `host` parameters. But Adsyield client-side Prebid.js adapter requires only `zone`. +Adsyield server-side Prebid Server adapter requires only `publisherId` and `host` parameters. But Adsyield client-side Prebid.js adapter requires only `host`, `adUnitId`, `adUnitType`. -Adsyield server-side Prebid Server adapter supports only `banner`, `video`, `audio`, `native` media types. But Adsyield client-side Prebid.js adapter supports only `video` media types, doesn't support `banner`, `audio` and `native`. +Adsyield server-side Prebid Server adapter supports only `banner`, `video`, `audio`, `native` media types. But Adsyield client-side Prebid.js adapter supports only `banner` and `video` media types, doesn't support `audio` and `native`.