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

Interactive Offers Bid Adapter: add md file to bidders #2784

Merged
merged 1 commit into from
Mar 22, 2021
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
16 changes: 8 additions & 8 deletions dev-docs/bidders/interactiveOffers.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
---
layout: bidder
title: InteractiveOffers
description: Prebid InteractiveOffers.com Bidder Adaptor
description: Prebid InteractiveOffers.com Bidder Adapter
pbjs: true
biddercode: interactiveOffers
gdpr_supported: false
media_types: banner
---

### Note:
Module that connects to interactiveOffers demand sources. Param pubId is required.
Module that connects to interactiveOffers demand sources. Param pubid is required.

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|----------|----------|----------------------------------------------------------------------|-----------------------------------|-----------|
| `pubId` | required | The placement ID (site channel ID) | `4` | `integer` |
| `tmax` | optional | Max timeout for response | `150` | `integer` |
| Name | Scope | Description | Example | Type |
|---------------|----------|-------------|---------|----------|
| `pubid` | required | Publisher id | 35 | `integer` |
| `tmax` | optional | Max time in milliseconds | 250 | `integer` |

Example:

``` bash
{
bidder: "interactiveOffers",
params: {
pubId: 4,
tmax: 150
pubid: 35,
tmax: 250
}
}
```