Skip to content
Merged
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
46 changes: 46 additions & 0 deletions dev-docs/bidders/conceptx.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
layout: bidder
title: Conceptx
description: Conceptx bidder adapter
biddercode: conceptx
gdpr_supported: true
usp_supported: false
coppa_supported: false
schain_supported: false
floors_supported: true
media_types: banner
userIds: all
pbjs: true
pbs: false
pbs_app_supported: false
sidebarType: 1
safeframes_ok: true
---


### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|-------------|----------|----------------------------------------------------------------------|----------|----------|
| `siteId` | required | The site ID `'your-page-name'`. | `'your-page-name'` | `string` |
| `adunit` | required | The specific adunit | `'some-id-3'` | `string`|


#### Banner example
```js
var adUnits = [
code: 'your-banner-container-id',
mediaTypes: {
banner: {
sizes: [[930, 180]]
}
},
bids: [{
bidder: 'conceptx',
params: {
site: "example", adunit: "some-id-3"
}
}]
];
```