From 07f449a014f43fa66e62f8b4a48acc00e829dd1b Mon Sep 17 00:00:00 2001 From: pb-pete Date: Wed, 5 Mar 2025 17:53:41 +0200 Subject: [PATCH 1/5] feat(): EXCO Bid Adapter: Support of new publisherId, accountId and tagId parameters. --- dev-docs/bidders/exco.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/dev-docs/bidders/exco.md b/dev-docs/bidders/exco.md index 72d2d3898b..108307a467 100644 --- a/dev-docs/bidders/exco.md +++ b/dev-docs/bidders/exco.md @@ -21,6 +21,7 @@ fpd_supported: false ortb_blocking_supported: false multiformat_supported: will-bid-on-one pbjs: true +pbs: true sidebarType: 1 --- @@ -28,11 +29,11 @@ sidebarType: 1 {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|------------|----------|-------------------------------------------------------------------------------------------|------------------------------|----------| -| `cId` | required | The connection ID from Exco. | `'562524b21b1c1f08117fc7f9'` | `string` | -| `pId` | required | The publisher ID from Exco. | `'59ac17c192832d0011283fe3'` | `string` | -| `bidFloor` | optional | The minimum bid value desired. Exco will not respond with bids lower than this value. | `0.90` | `float` | +| Name | Scope | Description | Example | Type | +|---------------|----------|-----------------------------------------------------------|----------------|----------| +| `accountID` | required | A unique account identifier provided by EX.CO. | `'1234567890'` | `string` | +| `publisherId` | required | Publisher ID provided by EX.CO. | `'1234567890'` | `string` | +| `tagId` | required | A unique Tag ID (supply id) identifier provided by EX.CO. | `'1234567890'` | `string` | ### Example @@ -50,9 +51,9 @@ var adUnits = [{ bids: [{ bidder: 'exco', params: { - cId: '562524b21b1c1f08117fc7f9', // Required - PROVIDED DURING SETUP... - pId: '59ac17c192832d0011283fe3', // Required - PROVIDED DURING SETUP... - bidFloor: 1.23 // Optional + accountID: '1234567890', // Required - PROVIDED DURING SETUP... + publisherId: '1234567890', // Required - PROVIDED DURING SETUP... + tagId: '1234567890' // Required - PROVIDED DURING SETUP... } }] } From adb3e4797d80cb5de2857b9971ca3d2934f8b97f Mon Sep 17 00:00:00 2001 From: pb-pete Date: Thu, 6 Mar 2025 16:33:31 +0200 Subject: [PATCH 2/5] feat(): EXCO Bid Adapter: Support of new publisherId, accountId and tagId parameters. --- dev-docs/bidders/exco.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/dev-docs/bidders/exco.md b/dev-docs/bidders/exco.md index 108307a467..b100eb2697 100644 --- a/dev-docs/bidders/exco.md +++ b/dev-docs/bidders/exco.md @@ -29,11 +29,14 @@ sidebarType: 1 {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|---------------|----------|-----------------------------------------------------------|----------------|----------| -| `accountID` | required | A unique account identifier provided by EX.CO. | `'1234567890'` | `string` | -| `publisherId` | required | Publisher ID provided by EX.CO. | `'1234567890'` | `string` | -| `tagId` | required | A unique Tag ID (supply id) identifier provided by EX.CO. | `'1234567890'` | `string` | +| Name | Scope | Description | Example | Type | +|---------------|------------|---------------------------------------------------------------------------------------|------------------------------|----------| +| `cId` | deprecated | The connection ID from Exco. | `'562524b21b1c1f08117fc7f9'` | `string` | +| `pId` | deprecated | The publisher ID from Exco. | `'59ac17c192832d0011283fe3'` | `string` | +| `bidFloor` | deprecated | The minimum bid value desired. Exco will not respond with bids lower than this value. | `0.90` | `float` | +| `accountID` | required | A unique account identifier provided by EX.CO. | `'1234567890'` | `string` | +| `publisherId` | required | Publisher ID provided by EX.CO. | `'1234567890'` | `string` | +| `tagId` | required | A unique Tag ID (supply id) identifier provided by EX.CO. | `'1234567890'` | `string` | ### Example From 84d83c4f37cc5b907aac8e4d1ef8929878aac57c Mon Sep 17 00:00:00 2001 From: pb-pete Date: Thu, 6 Mar 2025 16:37:08 +0200 Subject: [PATCH 3/5] feat(): EXCO Bid Adapter: Support of new publisherId, accountId and tagId parameters. --- dev-docs/bidders/exco.md | 1 - 1 file changed, 1 deletion(-) diff --git a/dev-docs/bidders/exco.md b/dev-docs/bidders/exco.md index b100eb2697..36631c89e0 100644 --- a/dev-docs/bidders/exco.md +++ b/dev-docs/bidders/exco.md @@ -21,7 +21,6 @@ fpd_supported: false ortb_blocking_supported: false multiformat_supported: will-bid-on-one pbjs: true -pbs: true sidebarType: 1 --- From e9244009c24fcc6535b954d99f3e204e2fe4efad Mon Sep 17 00:00:00 2001 From: pb-pete Date: Tue, 22 Apr 2025 11:41:49 +0300 Subject: [PATCH 4/5] Update exco bidder documentation --- dev-docs/bidders/exco.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-docs/bidders/exco.md b/dev-docs/bidders/exco.md index 36631c89e0..927f18a8d7 100644 --- a/dev-docs/bidders/exco.md +++ b/dev-docs/bidders/exco.md @@ -1,7 +1,7 @@ --- layout: bidder -title: Exco -description: Prebid Exco Bidder Adaptor +title: EX.CO +description: Prebid EX.CO Bidder Adaptor biddercode: exco filename: excoBidAdapter userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId From a4b1bd9805699287a51294af073b3e679a8ef7e4 Mon Sep 17 00:00:00 2001 From: Pete Date: Wed, 14 May 2025 11:24:35 +0300 Subject: [PATCH 5/5] fix(exco): typo --- dev-docs/bidders/exco.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-docs/bidders/exco.md b/dev-docs/bidders/exco.md index 927f18a8d7..e0089d715c 100644 --- a/dev-docs/bidders/exco.md +++ b/dev-docs/bidders/exco.md @@ -33,7 +33,7 @@ sidebarType: 1 | `cId` | deprecated | The connection ID from Exco. | `'562524b21b1c1f08117fc7f9'` | `string` | | `pId` | deprecated | The publisher ID from Exco. | `'59ac17c192832d0011283fe3'` | `string` | | `bidFloor` | deprecated | The minimum bid value desired. Exco will not respond with bids lower than this value. | `0.90` | `float` | -| `accountID` | required | A unique account identifier provided by EX.CO. | `'1234567890'` | `string` | +| `accountId` | required | A unique account identifier provided by EX.CO. | `'1234567890'` | `string` | | `publisherId` | required | Publisher ID provided by EX.CO. | `'1234567890'` | `string` | | `tagId` | required | A unique Tag ID (supply id) identifier provided by EX.CO. | `'1234567890'` | `string` | @@ -53,7 +53,7 @@ var adUnits = [{ bids: [{ bidder: 'exco', params: { - accountID: '1234567890', // Required - PROVIDED DURING SETUP... + accountId: '1234567890', // Required - PROVIDED DURING SETUP... publisherId: '1234567890', // Required - PROVIDED DURING SETUP... tagId: '1234567890' // Required - PROVIDED DURING SETUP... }