From a0cc69dda9d1f3bbfa583c465d71678ef515d38e Mon Sep 17 00:00:00 2001 From: moroz Date: Mon, 13 Nov 2023 16:37:20 +0100 Subject: [PATCH] add indicue doc --- dev-docs/bidders/indiecue.md | 109 +++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 dev-docs/bidders/indiecue.md diff --git a/dev-docs/bidders/indiecue.md b/dev-docs/bidders/indiecue.md new file mode 100644 index 0000000000..81f5fd9bfd --- /dev/null +++ b/dev-docs/bidders/indiecue.md @@ -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 + } + }] + } + ]; +```