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 3 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
42 changes: 42 additions & 0 deletions dev-docs/bidders/condorx.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
layout: bidder
title: CondorX
description: Prebid CondorX Bidder Adapter
media_type: native, banner
biddercode: condorx
pbjs: true
tcfeu_supported: false
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This document is missing quite a few pieces of adapter metadata. Please fill out the metadata as documented at https://docs.prebid.org/dev-docs/bidder-adaptor.html#submitting-your-adapter

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the prompt review @muuki88
I've fixed the doc, can you please check now?

Thanks

sidebarType: 1
---

### Note

The Example CondorX Bidding adapter requires setup before beginning. Please contact us at [CondorX](https://condorx.io).
CondorXIO marked this conversation as resolved.
Show resolved Hide resolved

### 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