From cd6d2b20f3c8c026e623695f1046abded31b8db4 Mon Sep 17 00:00:00 2001 From: Saar Amrani Date: Mon, 5 Jun 2023 15:33:18 +0300 Subject: [PATCH 1/3] added gpp_supported: true --- dev-docs/bidders/minutemediaplus.md | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-docs/bidders/minutemediaplus.md b/dev-docs/bidders/minutemediaplus.md index 800caa33f2..3acc24a1d2 100644 --- a/dev-docs/bidders/minutemediaplus.md +++ b/dev-docs/bidders/minutemediaplus.md @@ -10,6 +10,7 @@ usp_supported: true coppa_supported: false schain_supported: true floors_supported: true +gpp_supported: true media_types: banner, video prebid_member: false safeframes_ok: false From a2067ac7b761aae71f0f1e797901dbeec8715c72 Mon Sep 17 00:00:00 2001 From: Saar Amrani Date: Sun, 20 Aug 2023 17:34:02 +0300 Subject: [PATCH 2/3] added illuminBidAdapter docs --- dev-docs/bidders/illumin.md | 71 +++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 dev-docs/bidders/illumin.md diff --git a/dev-docs/bidders/illumin.md b/dev-docs/bidders/illumin.md new file mode 100644 index 0000000000..0d7346619d --- /dev/null +++ b/dev-docs/bidders/illumin.md @@ -0,0 +1,71 @@ +--- +layout: bidder +title: Illumin +description: Prebid Illumin Bidder Adaptor +biddercode: illumin +filename: illuminBidAdapter +userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId +tcfeu_supported: true +usp_supported: true +coppa_supported: false +schain_supported: true +gpp_supported: true +floors_supported: true +media_types: banner, video +prebid_member: false +safeframes_ok: false +deals_supported: false +pbs_app_supported: false +fpd_supported: false +ortb_blocking_supported: false +multiformat_supported: will-bid-on-one +gvl_id: 1165 +pbjs: true +sidebarType: 1 +--- + +### Bid Params + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|------------|----------|-------------------------------------------------------------------------------------------|------------------------------|----------| +| `cId` | required | The connection ID from Illumin. | `'562524b21b1c1f08117fc7f9'` | `string` | +| `pId` | required | The publisher ID from Illumin. | `'59ac17c192832d0011283fe3'` | `string` | +| `bidFloor` | optional | The minimum bid value desired. Illumin will not respond with bids lower than this value. | `0.90` | `float` | + +## Example + + ```javascript +var adUnits = [{ + code: 'banner-div', + mediaTypes: { + banner: { + sizes: [ + [300, 250], + [728, 90] + ] + } + }, + bids: [{ + bidder: 'illumin', + params: { + cId: '562524b21b1c1f08117fc7f9', // Required - PROVIDED DURING SETUP... + pId: '59ac17c192832d0011283fe3', // Required - PROVIDED DURING SETUP... + bidFloor: 1.23 // Optional + } + }] + } +]; + +// configure pbjs to enable user syncing +pbjs.setConfig({ + userSync: { + filterSettings: { + iframe: { + bidders: 'illumin', + filter: 'include' + } + } + } +}); +``` From b4eb75cbfb8eaa97bf9bcd7e011c296f13a07079 Mon Sep 17 00:00:00 2001 From: Saar Amrani Date: Wed, 30 Aug 2023 15:56:01 +0300 Subject: [PATCH 3/3] Remove wrong gvlid --- dev-docs/bidders/illumin.md | 1 - 1 file changed, 1 deletion(-) diff --git a/dev-docs/bidders/illumin.md b/dev-docs/bidders/illumin.md index 0d7346619d..9d67a10c8a 100644 --- a/dev-docs/bidders/illumin.md +++ b/dev-docs/bidders/illumin.md @@ -19,7 +19,6 @@ pbs_app_supported: false fpd_supported: false ortb_blocking_supported: false multiformat_supported: will-bid-on-one -gvl_id: 1165 pbjs: true sidebarType: 1 ---