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 indicue doc #4981

Merged
merged 1 commit into from
Nov 26, 2023
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
109 changes: 109 additions & 0 deletions dev-docs/bidders/indiecue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
---
layout: bidder
title: Indicue
description: Indicue Bidder Adapter
biddercode: indicue
aliasCode: adtelligent
media_types: video,banner
gvl_id: 410 (adtelligent)
tcfeu_supported: true
gpp_supported: true
userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId
schain_supported: true
coppa_supported: true
gpp_supported: true
usp_supported: true
safeframes_ok: true
prebid_member: false
pbjs: true
pbs: true
deals_supported: false
sidebarType: 1
---

### Bid params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|-------|----------|---------------------------------|----------|-----------|
| `aid` | required | The source ID from Indicue Media. | `12412` | `integer` |

### Description

Indicue Media header bidding adapter connects with Indicue Media demand sources in order to fetch bids.
This adapter provides a solution for accessing Video demand and display demand.

### Test Parameters

``` javascript
var adUnits = [

// Video instream adUnit
{
code: 'test-div',
mediaTypes: {
video: {
context: 'instream',
playerSize: [640, 480]
}
},
bids: [{
bidder: 'indicue',
params: {
aid: 472386
}
}]
},

// Video outstream adUnit
{
code: 'test-div',
mediaTypes: {
video: {
context: 'outstream',
playerSize: [640, 480]
}
},
bids: [{
bidder: 'indicue',
params: {
aid: 472386
}
}]
},

// Video ADPOD adUnit
{
code: 'test-div',
sizes: [[640, 480]],
mediaTypes: {
video: {
context: 'adpod',
playerSize: [640, 480]
}
},
bids: [{
bidder: 'indicue',
params: {
aid: 472386
}
}]
},

// Banner adUnit
{
code: 'test-div',
mediaTypes:{
banner:{
sizes: [[300, 250]]
}
}
bids: [{
bidder: 'indicue',
params: {
aid: 529814
}
}]
}
];
```