From a60eb7569cebf7407caa06a703d78cafcc252b4f Mon Sep 17 00:00:00 2001 From: Anna Yablonsky Date: Mon, 23 Feb 2026 15:21:34 +0200 Subject: [PATCH 1/8] adnimation doc --- dev-docs/bidders/adnimation.md | 92 +++++++++++++++++++++++++--------- 1 file changed, 68 insertions(+), 24 deletions(-) diff --git a/dev-docs/bidders/adnimation.md b/dev-docs/bidders/adnimation.md index dd7eefa28c..09881834a1 100644 --- a/dev-docs/bidders/adnimation.md +++ b/dev-docs/bidders/adnimation.md @@ -1,37 +1,81 @@ --- layout: bidder -title: Adnimation -description: Prebid Adnimation Bidder Adaptor -biddercode: adnimation -pbjs: true -pbs: false -media_types: video, banner -userIds: all -fpd_supported: false +title: Omnidex +description: Prebid Omnidex Bidder Adaptor +biddercode: omnidex +filename: omnidexBidAdapter +userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId tcfeu_supported: false usp_supported: true -coppa_supported: true +gvl_id: 1463 +coppa_supported: false schain_supported: true +gpp_supported: true +floors_supported: true +media_types: banner, video prebid_member: false -ortb_blocking_supported: true +safeframes_ok: false +deals_supported: false +pbs_app_supported: false +fpd_supported: false +ortb_blocking_supported: false multiformat_supported: will-bid-on-one -floors_supported: false -aliasCode: limelightDigital +pbjs: true +pbs: true sidebarType: 1 --- -### Bid Params +### Bid Params for Prebid.js {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|:--------------|:---------|:-------------------------------------------------------|:-----------------------|:----------| -| `host` | required | Ad network's RTB host | `'adnimation.trading'` | `string` | -| `adUnitId` | required | Ad Unit Id will be generated on Adnimation Platform. | `42` | `integer` | -| `adUnitType` | required | Type of Ad Unit (`'video'`, `'banner'`) | `'banner'` | `string` | -| `publisherId` | required | Publisher ID | `'12345'` | `string` | -| `custom1` | optional | Custom targeting field 1 | `'custom1'` | `string` | -| `custom2` | optional | Custom targeting field 2 | `'custom2'` | `string` | -| `custom3` | optional | Custom targeting field 3 | `'custom3'` | `string` | -| `custom4` | optional | Custom targeting field 4 | `'custom4'` | `string` | -| `custom5` | optional | Custom targeting field 5 | `'custom5'` | `string` | +| Name | Scope | Description | Example | Type | +|------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------| +| `cId` | required | The connection ID from Omnidex. | `'562524b21b1c1f08117fc7f9'` | `string` | +| `pId` | required | The publisher ID from Omnidex (pbjs only). | `'59ac17c192832d0011283fe3'` | `string` | +| `bidFloor` | optional | The minimum bid value desired. omnidex will not respond with bids lower than this value. | `0.90` | `float` | + +#### Bid Params for Prebid Server + +{: .table .table-bordered .table-striped } + +| Name | Scope | Description | Example | Type | +|------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------| +| `cId` | required | The connection ID from Omnidex. | `'562524b21b1c1f08117fc7f9'` | `string` | + +### Example + + ```javascript +var adUnits = [{ + code: 'banner-div', + mediaTypes: { + banner: { + sizes: [ + [300, 250], + [728, 90] + ] + } + }, + bids: [{ + bidder: 'omnidex', + 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: 'omnidex', + filter: 'include' + } + } + } +}); +``` From 357160d967c12e6daebceb824bdb6fc1b726a682 Mon Sep 17 00:00:00 2001 From: Anna Yablonsky Date: Tue, 24 Feb 2026 09:17:08 +0200 Subject: [PATCH 2/8] naming fix --- dev-docs/bidders/adnimation.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/dev-docs/bidders/adnimation.md b/dev-docs/bidders/adnimation.md index 09881834a1..aff82b2b79 100644 --- a/dev-docs/bidders/adnimation.md +++ b/dev-docs/bidders/adnimation.md @@ -1,9 +1,9 @@ --- layout: bidder -title: Omnidex -description: Prebid Omnidex Bidder Adaptor -biddercode: omnidex -filename: omnidexBidAdapter +title: Adnimation +description: Prebid Adnimation Bidder Adaptor +biddercode: adnimation +filename: adnimationBidAdapter userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId tcfeu_supported: false usp_supported: true @@ -31,9 +31,9 @@ sidebarType: 1 | Name | Scope | Description | Example | Type | |------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------| -| `cId` | required | The connection ID from Omnidex. | `'562524b21b1c1f08117fc7f9'` | `string` | -| `pId` | required | The publisher ID from Omnidex (pbjs only). | `'59ac17c192832d0011283fe3'` | `string` | -| `bidFloor` | optional | The minimum bid value desired. omnidex will not respond with bids lower than this value. | `0.90` | `float` | +| `cId` | required | The connection ID from Adnimation. | `'562524b21b1c1f08117fc7f9'` | `string` | +| `pId` | required | The publisher ID from Adnimation (pbjs only). | `'59ac17c192832d0011283fe3'` | `string` | +| `bidFloor` | optional | The minimum bid value desired. Adnimation will not respond with bids lower than this value. | `0.90` | `float` | #### Bid Params for Prebid Server @@ -41,7 +41,7 @@ sidebarType: 1 | Name | Scope | Description | Example | Type | |------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------| -| `cId` | required | The connection ID from Omnidex. | `'562524b21b1c1f08117fc7f9'` | `string` | +| `cId` | required | The connection ID from Adnimation. | `'562524b21b1c1f08117fc7f9'` | `string` | ### Example @@ -57,7 +57,7 @@ var adUnits = [{ } }, bids: [{ - bidder: 'omnidex', + bidder: 'adnimation', params: { cId: '562524b21b1c1f08117fc7f9', // Required - PROVIDED DURING SETUP... pId: '59ac17c192832d0011283fe3', // Required - PROVIDED DURING SETUP... @@ -72,7 +72,7 @@ pbjs.setConfig({ userSync: { filterSettings: { iframe: { - bidders: 'omnidex', + bidders: 'adnimation', filter: 'include' } } From a157568aeb4b4c7ca65c3a2d8b86ff9345c60656 Mon Sep 17 00:00:00 2001 From: Anna Yablonsky Date: Tue, 24 Feb 2026 09:57:20 +0200 Subject: [PATCH 3/8] using right gvlid --- dev-docs/bidders/adnimation.md | 1 - 1 file changed, 1 deletion(-) diff --git a/dev-docs/bidders/adnimation.md b/dev-docs/bidders/adnimation.md index aff82b2b79..6591bcc9d9 100644 --- a/dev-docs/bidders/adnimation.md +++ b/dev-docs/bidders/adnimation.md @@ -7,7 +7,6 @@ filename: adnimationBidAdapter userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId tcfeu_supported: false usp_supported: true -gvl_id: 1463 coppa_supported: false schain_supported: true gpp_supported: true From 48064386b184f16934807f7cf9684d473b80ab86 Mon Sep 17 00:00:00 2001 From: Anna Yablonsky Date: Mon, 20 Apr 2026 11:14:19 +0300 Subject: [PATCH 4/8] remove "filename" field --- dev-docs/bidders/adnimation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/adnimation.md b/dev-docs/bidders/adnimation.md index 6591bcc9d9..0b52d9fd3c 100644 --- a/dev-docs/bidders/adnimation.md +++ b/dev-docs/bidders/adnimation.md @@ -3,13 +3,13 @@ layout: bidder title: Adnimation description: Prebid Adnimation Bidder Adaptor biddercode: adnimation -filename: adnimationBidAdapter userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId tcfeu_supported: false usp_supported: true coppa_supported: false schain_supported: true gpp_supported: true +gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp floors_supported: true media_types: banner, video prebid_member: false From a1aee3e25d21cf81837884ea8c382fc7e9967dd9 Mon Sep 17 00:00:00 2001 From: Anna Yablonsky Date: Mon, 20 Apr 2026 11:19:08 +0300 Subject: [PATCH 5/8] trying to fix markup --- dev-docs/bidders/adnimation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/adnimation.md b/dev-docs/bidders/adnimation.md index 0b52d9fd3c..020f7013df 100644 --- a/dev-docs/bidders/adnimation.md +++ b/dev-docs/bidders/adnimation.md @@ -42,7 +42,7 @@ sidebarType: 1 |------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------| | `cId` | required | The connection ID from Adnimation. | `'562524b21b1c1f08117fc7f9'` | `string` | -### Example +#### Example ```javascript var adUnits = [{ From 4377bdd28838b9a4319540091ed9ff57669f7c7b Mon Sep 17 00:00:00 2001 From: Anna Yablonsky Date: Mon, 20 Apr 2026 11:20:23 +0300 Subject: [PATCH 6/8] trying to fix markdownlint error --- dev-docs/bidders/adnimation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-docs/bidders/adnimation.md b/dev-docs/bidders/adnimation.md index 020f7013df..a389ddc1b5 100644 --- a/dev-docs/bidders/adnimation.md +++ b/dev-docs/bidders/adnimation.md @@ -24,7 +24,7 @@ pbs: true sidebarType: 1 --- -### Bid Params for Prebid.js +## Bid Params for Prebid.js {: .table .table-bordered .table-striped } @@ -34,7 +34,7 @@ sidebarType: 1 | `pId` | required | The publisher ID from Adnimation (pbjs only). | `'59ac17c192832d0011283fe3'` | `string` | | `bidFloor` | optional | The minimum bid value desired. Adnimation will not respond with bids lower than this value. | `0.90` | `float` | -#### Bid Params for Prebid Server +## Bid Params for Prebid Server {: .table .table-bordered .table-striped } @@ -42,7 +42,7 @@ sidebarType: 1 |------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------| | `cId` | required | The connection ID from Adnimation. | `'562524b21b1c1f08117fc7f9'` | `string` | -#### Example +### Example ```javascript var adUnits = [{ From 6b02ff09a7a72a3d05b87a03f5010f6377fc3828 Mon Sep 17 00:00:00 2001 From: Anna Yablonsky Date: Mon, 20 Apr 2026 11:25:49 +0300 Subject: [PATCH 7/8] reformat table --- dev-docs/bidders/adnimation.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-docs/bidders/adnimation.md b/dev-docs/bidders/adnimation.md index a389ddc1b5..5701ce47a8 100644 --- a/dev-docs/bidders/adnimation.md +++ b/dev-docs/bidders/adnimation.md @@ -28,8 +28,8 @@ sidebarType: 1 {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------| +| Name | Scope | Description | Example | Type | +|------------|----------|---------------------------------------------------------------------------------------------|------------------------------|----------| | `cId` | required | The connection ID from Adnimation. | `'562524b21b1c1f08117fc7f9'` | `string` | | `pId` | required | The publisher ID from Adnimation (pbjs only). | `'59ac17c192832d0011283fe3'` | `string` | | `bidFloor` | optional | The minimum bid value desired. Adnimation will not respond with bids lower than this value. | `0.90` | `float` | @@ -38,9 +38,9 @@ sidebarType: 1 {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------| -| `cId` | required | The connection ID from Adnimation. | `'562524b21b1c1f08117fc7f9'` | `string` | +| Name | Scope | Description | Example | Type | +|-------|----------|------------------------------------|------------------------------|----------| +| `cId` | required | The connection ID from Adnimation. | `'562524b21b1c1f08117fc7f9'` | `string` | ### Example From 9899efcc72d25458d33fc90a40d926c30c8fa0ff Mon Sep 17 00:00:00 2001 From: Anna Yablonsky Date: Mon, 20 Apr 2026 11:30:49 +0300 Subject: [PATCH 8/8] pbs: false (just for initial publish) --- dev-docs/bidders/adnimation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/adnimation.md b/dev-docs/bidders/adnimation.md index 5701ce47a8..38ca52d2df 100644 --- a/dev-docs/bidders/adnimation.md +++ b/dev-docs/bidders/adnimation.md @@ -20,7 +20,7 @@ fpd_supported: false ortb_blocking_supported: false multiformat_supported: will-bid-on-one pbjs: true -pbs: true +pbs: false sidebarType: 1 ---