Skip to content

Commit

Permalink
New Adapter: Conceptx (prebid#4521)
Browse files Browse the repository at this point in the history
* conceptx docs added

* Update conceptx docs
  • Loading branch information
cpcpn-emil authored and ecdrsvc committed Sep 6, 2023
1 parent d03918d commit f3c92fb
Showing 1 changed file with 46 additions and 0 deletions.
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"
}
}]
];
```

0 comments on commit f3c92fb

Please sign in to comment.