Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions dev-docs/bidders/audiencelogy.md
Original file line number Diff line number Diff line change
@@ -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
}
}]
}
];
```