Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CondorX Bidder docs #5818

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
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
57 changes: 57 additions & 0 deletions dev-docs/bidders/condorx.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
---
layout: bidder
title: CondorX
description: Prebid CondorX Bidder Adapter
biddercode: condorx
tcfeu_supported: true
dsa_supported: false
gvl_id: 1375
usp_supported: false
coppa_supported: false
schain_supported: false
dchain_supported: false
media_types: banner, native
safeframes_ok: false
deals_supported: false
floors_supported: true
fpd_supported: false
pbjs: true
pbs: false
prebid_member: false
multiformat_supported: will-bid-on-any
ortb_blocking_supported: false
privacy_sandbox: no
sidebarType: 1
---

### Note

The CondorX Bidding adapter requires setup before beginning. Please contact us at [CondorX](https://condorx.io).

### Bid params

| Name | Scope | Description | Example |
|----------|----------|-------------------------------------------------------------|----------------------|
| `widget` | required | The widget ID, by CondorX | `12345` |
| `website`| required | The website ID, by Condorx | `12345` |
| `url` | optional | Current url | `https://condorx.io` |

### Example Ad Unit

```javascript
var adUnits = [{
code: 'condorx-container-id',
mediaTypes: {
banner: {
sizes: [[300, 250]],
}
},
bids: [{
bidder: "condorx",
params: {
widget: 'widget id by CondorX',
website: 'website id by CondorX',
url:'current url'
}
}]
}];
Loading