diff --git a/dev-docs/bidders/audiencelogy.md b/dev-docs/bidders/audiencelogy.md new file mode 100644 index 0000000000..a6f76a1d32 --- /dev/null +++ b/dev-docs/bidders/audiencelogy.md @@ -0,0 +1,58 @@ +--- +layout: bidder +title: Audiencelogy +description: Prebid Audiencelogy Bidder Adaptor +pbjs: true +biddercode: audiencelogy +media_types: banner +tcfeu_supported: false +usp_supported: true +coppa_supported: true +gpp_sids: usstate_all +schain_supported: false +safeframes_ok: false +ortb_blocking_supported: false +dsa_supported: false +deals_supported: true +floors_supported: true +sidebarType: 1 +--- + +### Bid Params + +| Name | Scope | Description | Example | Type | +|---------------|-----------|-----------------------|----------------|----------| +| `placement_id`| mandatory | Placement Id | `110011` | `number` | +| `user_id` | mandatory | Unique id for HCP | `'1111111'` | `string` | +| `nid` | mandatory | Unique nid for client | `1` | `number` | +| `height` | optional | Height of the creative| `600` | `number` | +| `width` | optional | Width of the creative | `160` | `number` | +| `domain` | optional | Domain | `'domain.com'` | `string` | +| `bid_floor` | optional | Bid Floor Price | `0.5` | `decimal`| + +### AdUnit Format for Banner + +```javascript +var adUnits = [ + { + code: 'banner-ad', + mediaTypes: { + banner: { + sizes: [[160, 600]] + } + }, + bids: [{ + bidder: 'relevatehealth', + params: { + placement_id: 110011, + user_id: '', + nid: 1, + height: 600, + width: 160, + domain: '', + bid_floor: 0.5 + } + }] + } + ]; +```