From 24b32418087b3dba3ec2fa0f03ac16eaec54e056 Mon Sep 17 00:00:00 2001 From: moses Date: Tue, 5 Aug 2025 13:51:36 +0300 Subject: [PATCH 1/8] - Updated Gamoshi Adapter documentation - Added aliases for cleanmedianet and gambid adapters - Removed 9MediaOnline adapter (no longer valid) --- dev-docs/bidders/9MediaOnline.md | 23 ----- dev-docs/bidders/cleanmedianet.md | 161 ++++++++++++++++++++++++++---- dev-docs/bidders/gambid.md | 154 ++++++++++++++++++++++++++-- dev-docs/bidders/gamoshi.md | 140 +++++++++++++++++++++++++- 4 files changed, 421 insertions(+), 57 deletions(-) delete mode 100644 dev-docs/bidders/9MediaOnline.md diff --git a/dev-docs/bidders/9MediaOnline.md b/dev-docs/bidders/9MediaOnline.md deleted file mode 100644 index 3e337a1da8..0000000000 --- a/dev-docs/bidders/9MediaOnline.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: bidder -title: 9 Media Online -description: Prebid 9 Media Online Bidder Adaptor -biddercode: 9MediaOnline -pbjs: true -media_types: banner, video -gvl_id: 644 -tcfeu_supported: true -tcf2_supported: true -schain_supported: true -usp_supported: true -userIds: id5Id, unifiedId -aliasCode: gamoshi -sidebarType: 1 ---- - -### Bid params - -{: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|-------------------|----------|---------------------------------------------------------------|----------------------|----------| -| `supplyPartnerId` | required | ID of the supply partner | `'12345'` | `string` | diff --git a/dev-docs/bidders/cleanmedianet.md b/dev-docs/bidders/cleanmedianet.md index 2035fd58e0..77c4b6a4fc 100644 --- a/dev-docs/bidders/cleanmedianet.md +++ b/dev-docs/bidders/cleanmedianet.md @@ -4,30 +4,153 @@ title: Clean Media Net description: Clean Media Bidder Adapter biddercode: cleanmedianet pbjs: true +pbs: true media_types: banner, video -tcfeu_supported: false -usp_supported: true -coppa_supported: false +userIds: all +gvl_id: 644 +tcfeu_supported: true +tcf2_supported: true schain_supported: true -floors_supported: true -userIds: -prebid_member: false -safeframes_ok: true -deals_supported: false -pbs_app_supported: false -fpd_supported: false -ortb_blocking_supported: false -gvl_id: -multiformat_supported: will-bid-on-any +usp_supported: true +ortb_blocking_supported: true +multiformat_supported: will-bid-on-one +sidebarType: 1 +aliasCode: gamoshi --- -### Disclosure - -Note: This bidder appears to only consider gdprApplies if a consent string is available. This may result in some incorrect GDPR processing, such as when the consent string is not yet available but the publisher has decided GDPR always applies. See - ### Bid params {: .table .table-bordered .table-striped } | Name | Scope | Description | Example | Type | -|-------------------+----------+--------------------------------------------------------+-------------------------+---------| -| `supplyPartnerId` | required | The supply account's ID in your Clean Media dashboard. | `"1253"`, `"1254"`, etc | string | +|-------------------|----------|---------------------------------------------------------------|----------------------|----------| +| `supplyPartnerId` or `inventory_id` or `supply_partner_id` | required | ID of the supply partner. This parameter can be either a `string` or `integer` for Prebid.js, however `integer` is preferred | `12345` | `integer` | +| `bidfloor` | optional | Minimum acceptable bid price. Must be a positive number. | `0.5` | `number` | +| `instl` | optional | Interstitial flag (1 for interstitial, 0 for non-interstitial). | `1` | `integer` | +| `pos` | optional | Ad position on the page. | `1` | `integer` | +| `video` | optional | Object containing video targeting parameters. See [Video Object](#cleanmedianet-video-object) for details. | `video: { playback_method: ['auto_play_sound_off'] }` | `object` | + +This adapter only requires you to provide your Inventory Id (Supply partner id), and optionally your RTB endpoint. + + + +#### Video Object + +For details on how these video params work with the params set in the adUnit.mediaTypes.video object. + +{: .table .table-bordered .table-striped } +| Name | Description | Type | +|-------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------| +| `minduration` | Integer that defines the minimum video ad duration in seconds. | `integer` | +| `maxduration` | Integer that defines the maximum video ad duration in seconds. | `integer` | +| `protocols` | Array of integers listing the supported video protocols (VAST versions). | `Array` | +| `mimes` | Array of strings listing the supported MIME types for the video creative. | `Array` | +| `pos` | Ad position on the screen. | `integer` | +| `api` | Array of integers listing the supported API frameworks. | `Array` | +| `skip` | Indicates if the player will allow the video to be skipped (0 = no, 1 = yes). | `integer` | +| `plcmt` | Video placement type. | `integer` | +| `placement` | Placement type for the impression. | `integer` | +| `playbackmethod` | Array of integers listing the playback methods. | `Array` | +| `startdelay` | Indicates the offset of the ad placement from the start of the video content. | `integer` | +| `context` | Content context (e.g., 'instream', 'outstream'). | `string` | + +### Example Ad Unit Configurations + +#### Banner Ad Unit + +```javascript +var adUnits = [ + { + code: 'banner-div', + mediaTypes: { + banner: { + sizes: [[300, 250], [728, 90]] + } + }, + bids: [ + { + bidder: 'cleanmedianet', + params: { + supplyPartnerId: 12345, + bidfloor: 0.5, + pos: 1 + } + } + ] + } +]; +``` + +#### Video Ad Unit (Instream) + +```javascript +var adUnits = [ + { + code: 'video-div', + mediaTypes: { + video: { + playerSize: [[640, 480]], + context: 'instream', + mimes: ['video/mp4', 'video/webm'], + protocols: [2, 3, 5, 6], + maxduration: 30, + api: [1, 2] + } + }, + bids: [ + { + bidder: 'cleanmedianet', + params: { + supplyPartnerId: 12345, + video: { + minduration: 5, + maxduration: 30, + protocols: [2, 3, 5, 6], + mimes: ['video/mp4', 'video/webm'], + playbackmethod: [2], + skip: 1, + startdelay: 0, + api: [1, 2], + plcmt: 1 + } + } + } + ] + } +]; +``` + +#### Video Ad Unit (Outstream) + +```javascript +var adUnits = [ + { + code: 'outstream-div', + mediaTypes: { + video: { + playerSize: [[640, 480]], + context: 'outstream', + mimes: ['video/mp4', 'video/webm'] + } + }, + bids: [ + { + bidder: 'cleanmedianet', + params: { + supplyPartnerId: 12345, + rendererUrl: 'https://example.com/outstream-renderer.js', + video: { + minduration: 5, + maxduration: 30, + protocols: [2, 3, 5, 6], + mimes: ['video/mp4', 'video/webm'], + playbackmethod: [2], + placement: 3, + plcmt: 3, + context: 'outstream' + } + } + } + ] + } +]; +``` \ No newline at end of file diff --git a/dev-docs/bidders/gambid.md b/dev-docs/bidders/gambid.md index 1e2eada831..6be63abd32 100644 --- a/dev-docs/bidders/gambid.md +++ b/dev-docs/bidders/gambid.md @@ -1,22 +1,156 @@ --- layout: bidder title: Gambid -description: Prebid Gambid Bidder Adaptor - -top_nav_section: dev_docs -nav_section: reference - +description: Prebid Gambid Bidder Adapter +biddercode: gambid pbjs: true +pbs: true media_types: banner, video -biddercode: gambid -aliasCode: gamoshi -userIds: id5Id, unifiedId +userIds: all +gvl_id: 644 +tcfeu_supported: true +tcf2_supported: true +schain_supported: true +usp_supported: true +ortb_blocking_supported: true +multiformat_supported: will-bid-on-one sidebarType: 1 +aliasCode: gamoshi --- ### Bid params {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | +| Name | Scope | Description | Example | Type | |-------------------|----------|---------------------------------------------------------------|----------------------|----------| -| `supplyPartnerId` | required | ID of the supply partner | `'12345'` | `string` | +| `supplyPartnerId` or `inventory_id` or `supply_partner_id` | required | ID of the supply partner. This parameter can be either a `string` or `integer` for Prebid.js, however `integer` is preferred | `12345` | `integer` | +| `bidfloor` | optional | Minimum acceptable bid price. Must be a positive number. | `0.5` | `number` | +| `instl` | optional | Interstitial flag (1 for interstitial, 0 for non-interstitial). | `1` | `integer` | +| `pos` | optional | Ad position on the page. | `1` | `integer` | +| `video` | optional | Object containing video targeting parameters. See [Video Object](#gambid-video-object) for details. | `video: { playback_method: ['auto_play_sound_off'] }` | `object` | + +This adapter only requires you to provide your Inventory Id (Supply partner id), and optionally your RTB endpoint. + + + +#### Video Object + +For details on how these video params work with the params set in the adUnit.mediaTypes.video object. + +{: .table .table-bordered .table-striped } +| Name | Description | Type | +|-------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------| +| `minduration` | Integer that defines the minimum video ad duration in seconds. | `integer` | +| `maxduration` | Integer that defines the maximum video ad duration in seconds. | `integer` | +| `protocols` | Array of integers listing the supported video protocols (VAST versions). | `Array` | +| `mimes` | Array of strings listing the supported MIME types for the video creative. | `Array` | +| `pos` | Ad position on the screen. | `integer` | +| `api` | Array of integers listing the supported API frameworks. | `Array` | +| `skip` | Indicates if the player will allow the video to be skipped (0 = no, 1 = yes). | `integer` | +| `plcmt` | Video placement type. | `integer` | +| `placement` | Placement type for the impression. | `integer` | +| `playbackmethod` | Array of integers listing the playback methods. | `Array` | +| `startdelay` | Indicates the offset of the ad placement from the start of the video content. | `integer` | +| `context` | Content context (e.g., 'instream', 'outstream'). | `string` | + +### Example Ad Unit Configurations + +#### Banner Ad Unit + +```javascript +var adUnits = [ + { + code: 'banner-div', + mediaTypes: { + banner: { + sizes: [[300, 250], [728, 90]] + } + }, + bids: [ + { + bidder: 'gambid', + params: { + supplyPartnerId: 12345, + bidfloor: 0.5, + pos: 1 + } + } + ] + } +]; +``` + +#### Video Ad Unit (Instream) + +```javascript +var adUnits = [ + { + code: 'video-div', + mediaTypes: { + video: { + playerSize: [[640, 480]], + context: 'instream', + mimes: ['video/mp4', 'video/webm'], + protocols: [2, 3, 5, 6], + maxduration: 30, + api: [1, 2] + } + }, + bids: [ + { + bidder: 'gambid', + params: { + supplyPartnerId: 12345, + video: { + minduration: 5, + maxduration: 30, + protocols: [2, 3, 5, 6], + mimes: ['video/mp4', 'video/webm'], + playbackmethod: [2], + skip: 1, + startdelay: 0, + api: [1, 2], + plcmt: 1 + } + } + } + ] + } +]; +``` + +#### Video Ad Unit (Outstream) + +```javascript +var adUnits = [ + { + code: 'outstream-div', + mediaTypes: { + video: { + playerSize: [[640, 480]], + context: 'outstream', + mimes: ['video/mp4', 'video/webm'] + } + }, + bids: [ + { + bidder: 'gambid', + params: { + supplyPartnerId: 12345, + rendererUrl: 'https://example.com/outstream-renderer.js', + video: { + minduration: 5, + maxduration: 30, + protocols: [2, 3, 5, 6], + mimes: ['video/mp4', 'video/webm'], + playbackmethod: [2], + placement: 3, + plcmt: 3, + context: 'outstream' + } + } + } + ] + } +]; +``` \ No newline at end of file diff --git a/dev-docs/bidders/gamoshi.md b/dev-docs/bidders/gamoshi.md index 2b1a874644..e70d2ab0b5 100644 --- a/dev-docs/bidders/gamoshi.md +++ b/dev-docs/bidders/gamoshi.md @@ -6,12 +6,14 @@ biddercode: gamoshi pbjs: true pbs: true media_types: banner, video +userIds: all +gvl_id: 644 tcfeu_supported: true tcf2_supported: true schain_supported: true usp_supported: true -userIds: id5Id, unifiedId -gvl_id: 644 +ortb_blocking_supported: true +multiformat_supported: will-bid-on-one sidebarType: 1 --- @@ -20,8 +22,136 @@ sidebarType: 1 {: .table .table-bordered .table-striped } | Name | Scope | Description | Example | Type | |-------------------|----------|---------------------------------------------------------------|----------------------|----------| -| `supplyPartnerId` | required | ID of the supply partner you created in the Gamoshi dashboard. | `'12345'` | `string` | +| `supplyPartnerId` or `inventory_id` or `supply_partner_id` | required | ID of the supply partner you created in the Gamoshi dashboard. This parameter can be either a `string` or `integer` for Prebid.js, however `integer` is preferred | `12345` | `integer` | | `rtbEndpoint` | optional | If you have a whitelabel account on Gamoshi, specify it here. | `'rtb.mybidder.com'` | `string` | +| `bidfloor` | optional | Minimum acceptable bid price. Must be a positive number. | `0.5` | `number` | +| `instl` | optional | Interstitial flag (1 for interstitial, 0 for non-interstitial). | `1` | `integer` | +| `pos` | optional | Ad position on the page. | `1` | `integer` | +| `rendererUrl` | optional | Custom renderer URL for outstream video. | `'https://example.com/renderer.js'` | `string` | +| `video` | optional | Object containing video targeting parameters. See [Video Object](#gamoshi-video-object) for details. | `video: { playback_method: ['auto_play_sound_off'] }` | `object` | + +This adapter only requires you to provide your Inventory Id (Supply partner id), and optionally your RTB endpoint. + + + +#### Video Object + +For details on how these video params work with the params set in the adUnit.mediaTypes.video object. + +{: .table .table-bordered .table-striped } +| Name | Description | Type | +|-------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------| +| `minduration` | Integer that defines the minimum video ad duration in seconds. | `integer` | +| `maxduration` | Integer that defines the maximum video ad duration in seconds. | `integer` | +| `protocols` | Array of integers listing the supported video protocols (VAST versions). | `Array` | +| `mimes` | Array of strings listing the supported MIME types for the video creative. | `Array` | +| `pos` | Ad position on the screen. | `integer` | +| `api` | Array of integers listing the supported API frameworks. | `Array` | +| `skip` | Indicates if the player will allow the video to be skipped (0 = no, 1 = yes). | `integer` | +| `plcmt` | Video placement type. | `integer` | +| `placement` | Placement type for the impression. | `integer` | +| `playbackmethod` | Array of integers listing the playback methods. | `Array` | +| `startdelay` | Indicates the offset of the ad placement from the start of the video content. | `integer` | +| `context` | Content context (e.g., 'instream', 'outstream'). | `string` | + +### Example Ad Unit Configurations + +#### Banner Ad Unit + +```javascript +var adUnits = [ + { + code: 'banner-div', + mediaTypes: { + banner: { + sizes: [[300, 250], [728, 90]] + } + }, + bids: [ + { + bidder: 'gamoshi', + params: { + supplyPartnerId: 12345, + bidfloor: 0.5, + pos: 1 + } + } + ] + } +]; +``` + +#### Video Ad Unit (Instream) + +```javascript +var adUnits = [ + { + code: 'video-div', + mediaTypes: { + video: { + playerSize: [[640, 480]], + context: 'instream', + mimes: ['video/mp4', 'video/webm'], + protocols: [2, 3, 5, 6], + maxduration: 30, + api: [1, 2] + } + }, + bids: [ + { + bidder: 'gamoshi', + params: { + supplyPartnerId: 12345, + video: { + minduration: 5, + maxduration: 30, + protocols: [2, 3, 5, 6], + mimes: ['video/mp4', 'video/webm'], + playbackmethod: [2], + skip: 1, + startdelay: 0, + api: [1, 2], + plcmt: 1 + } + } + } + ] + } +]; +``` + +#### Video Ad Unit (Outstream) -This adapter only requires you to provide your supply partner ID, and optionally your RTB endpoint, in order to request -bids from your Gamoshi account. +```javascript +var adUnits = [ + { + code: 'outstream-div', + mediaTypes: { + video: { + playerSize: [[640, 480]], + context: 'outstream', + mimes: ['video/mp4', 'video/webm'] + } + }, + bids: [ + { + bidder: 'gamoshi', + params: { + supplyPartnerId: 12345, + rendererUrl: 'https://example.com/outstream-renderer.js', + video: { + minduration: 5, + maxduration: 30, + protocols: [2, 3, 5, 6], + mimes: ['video/mp4', 'video/webm'], + playbackmethod: [2], + placement: 3, + plcmt: 3, + context: 'outstream' + } + } + } + ] + } +]; +``` \ No newline at end of file From 04e8d538d778c9fe7307370918c6033bc59c4a8f Mon Sep 17 00:00:00 2001 From: moses Date: Tue, 5 Aug 2025 14:09:06 +0300 Subject: [PATCH 2/8] added newline to the end --- dev-docs/bidders/cleanmedianet.md | 2 +- dev-docs/bidders/gambid.md | 2 +- dev-docs/bidders/gamoshi.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-docs/bidders/cleanmedianet.md b/dev-docs/bidders/cleanmedianet.md index 77c4b6a4fc..223f361d62 100644 --- a/dev-docs/bidders/cleanmedianet.md +++ b/dev-docs/bidders/cleanmedianet.md @@ -153,4 +153,4 @@ var adUnits = [ ] } ]; -``` \ No newline at end of file +``` diff --git a/dev-docs/bidders/gambid.md b/dev-docs/bidders/gambid.md index 6be63abd32..f1e588946e 100644 --- a/dev-docs/bidders/gambid.md +++ b/dev-docs/bidders/gambid.md @@ -153,4 +153,4 @@ var adUnits = [ ] } ]; -``` \ No newline at end of file +``` diff --git a/dev-docs/bidders/gamoshi.md b/dev-docs/bidders/gamoshi.md index e70d2ab0b5..de45ad6828 100644 --- a/dev-docs/bidders/gamoshi.md +++ b/dev-docs/bidders/gamoshi.md @@ -154,4 +154,4 @@ var adUnits = [ ] } ]; -``` \ No newline at end of file +``` From 821261682eb4019a7f6191f24c7b626b36c9aca9 Mon Sep 17 00:00:00 2001 From: Moshe Moses Date: Thu, 14 Aug 2025 15:58:56 +0300 Subject: [PATCH 3/8] Update dev-docs/bidders/cleanmedianet.md Co-authored-by: Muki Seiler --- dev-docs/bidders/cleanmedianet.md | 1 - 1 file changed, 1 deletion(-) diff --git a/dev-docs/bidders/cleanmedianet.md b/dev-docs/bidders/cleanmedianet.md index 223f361d62..31d74855c5 100644 --- a/dev-docs/bidders/cleanmedianet.md +++ b/dev-docs/bidders/cleanmedianet.md @@ -31,7 +31,6 @@ aliasCode: gamoshi This adapter only requires you to provide your Inventory Id (Supply partner id), and optionally your RTB endpoint. - #### Video Object From e553fadb4a9d15918948e3c487137847fb5b2812 Mon Sep 17 00:00:00 2001 From: Moshe Moses Date: Thu, 14 Aug 2025 15:59:24 +0300 Subject: [PATCH 4/8] Update dev-docs/bidders/gambid.md Co-authored-by: Muki Seiler --- dev-docs/bidders/gambid.md | 1 - 1 file changed, 1 deletion(-) diff --git a/dev-docs/bidders/gambid.md b/dev-docs/bidders/gambid.md index f1e588946e..4a8e57f312 100644 --- a/dev-docs/bidders/gambid.md +++ b/dev-docs/bidders/gambid.md @@ -9,7 +9,6 @@ media_types: banner, video userIds: all gvl_id: 644 tcfeu_supported: true -tcf2_supported: true schain_supported: true usp_supported: true ortb_blocking_supported: true From 754a80f4ebd4cb52f5c3973d04ddc0b5307a25c7 Mon Sep 17 00:00:00 2001 From: Moshe Moses Date: Thu, 14 Aug 2025 15:59:32 +0300 Subject: [PATCH 5/8] Update dev-docs/bidders/gambid.md Co-authored-by: Muki Seiler --- dev-docs/bidders/gambid.md | 1 - 1 file changed, 1 deletion(-) diff --git a/dev-docs/bidders/gambid.md b/dev-docs/bidders/gambid.md index 4a8e57f312..2b770afbd6 100644 --- a/dev-docs/bidders/gambid.md +++ b/dev-docs/bidders/gambid.md @@ -30,7 +30,6 @@ aliasCode: gamoshi This adapter only requires you to provide your Inventory Id (Supply partner id), and optionally your RTB endpoint. - #### Video Object From 26d2e6da9362773daf0651c3a732e910f02d2f61 Mon Sep 17 00:00:00 2001 From: Moshe Moses Date: Thu, 14 Aug 2025 15:59:41 +0300 Subject: [PATCH 6/8] Update dev-docs/bidders/gamoshi.md Co-authored-by: Muki Seiler --- dev-docs/bidders/gamoshi.md | 1 - 1 file changed, 1 deletion(-) diff --git a/dev-docs/bidders/gamoshi.md b/dev-docs/bidders/gamoshi.md index de45ad6828..68cf3dffe2 100644 --- a/dev-docs/bidders/gamoshi.md +++ b/dev-docs/bidders/gamoshi.md @@ -9,7 +9,6 @@ media_types: banner, video userIds: all gvl_id: 644 tcfeu_supported: true -tcf2_supported: true schain_supported: true usp_supported: true ortb_blocking_supported: true From 4cc2514118355edc80a9e7b60778a8a4a13d89c7 Mon Sep 17 00:00:00 2001 From: Moshe Moses Date: Thu, 14 Aug 2025 15:59:51 +0300 Subject: [PATCH 7/8] Update dev-docs/bidders/gamoshi.md Co-authored-by: Muki Seiler --- dev-docs/bidders/gamoshi.md | 1 - 1 file changed, 1 deletion(-) diff --git a/dev-docs/bidders/gamoshi.md b/dev-docs/bidders/gamoshi.md index 68cf3dffe2..798cfac3bf 100644 --- a/dev-docs/bidders/gamoshi.md +++ b/dev-docs/bidders/gamoshi.md @@ -31,7 +31,6 @@ sidebarType: 1 This adapter only requires you to provide your Inventory Id (Supply partner id), and optionally your RTB endpoint. - #### Video Object From 8ba5154c16628c6bacada023a04b872fe39dc135 Mon Sep 17 00:00:00 2001 From: moses Date: Sat, 16 Aug 2025 20:23:45 +0300 Subject: [PATCH 8/8] fixing markdown liniting errors --- dev-docs/bidders/cleanmedianet.md | 3 +-- dev-docs/bidders/gambid.md | 3 +-- dev-docs/bidders/gamoshi.md | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/dev-docs/bidders/cleanmedianet.md b/dev-docs/bidders/cleanmedianet.md index 31d74855c5..920038d7c7 100644 --- a/dev-docs/bidders/cleanmedianet.md +++ b/dev-docs/bidders/cleanmedianet.md @@ -27,11 +27,10 @@ aliasCode: gamoshi | `bidfloor` | optional | Minimum acceptable bid price. Must be a positive number. | `0.5` | `number` | | `instl` | optional | Interstitial flag (1 for interstitial, 0 for non-interstitial). | `1` | `integer` | | `pos` | optional | Ad position on the page. | `1` | `integer` | -| `video` | optional | Object containing video targeting parameters. See [Video Object](#cleanmedianet-video-object) for details. | `video: { playback_method: ['auto_play_sound_off'] }` | `object` | +| `video` | optional | Object containing video targeting parameters. See [Video Object](#video-object) for details. | `video: { playback_method: ['auto_play_sound_off'] }` | `object` | This adapter only requires you to provide your Inventory Id (Supply partner id), and optionally your RTB endpoint. - #### Video Object For details on how these video params work with the params set in the adUnit.mediaTypes.video object. diff --git a/dev-docs/bidders/gambid.md b/dev-docs/bidders/gambid.md index 2b770afbd6..33ab5e4031 100644 --- a/dev-docs/bidders/gambid.md +++ b/dev-docs/bidders/gambid.md @@ -26,11 +26,10 @@ aliasCode: gamoshi | `bidfloor` | optional | Minimum acceptable bid price. Must be a positive number. | `0.5` | `number` | | `instl` | optional | Interstitial flag (1 for interstitial, 0 for non-interstitial). | `1` | `integer` | | `pos` | optional | Ad position on the page. | `1` | `integer` | -| `video` | optional | Object containing video targeting parameters. See [Video Object](#gambid-video-object) for details. | `video: { playback_method: ['auto_play_sound_off'] }` | `object` | +| `video` | optional | Object containing video targeting parameters. See [Video Object](#video-object) for details. | `video: { playback_method: ['auto_play_sound_off'] }` | `object` | This adapter only requires you to provide your Inventory Id (Supply partner id), and optionally your RTB endpoint. - #### Video Object For details on how these video params work with the params set in the adUnit.mediaTypes.video object. diff --git a/dev-docs/bidders/gamoshi.md b/dev-docs/bidders/gamoshi.md index 798cfac3bf..354c6e7110 100644 --- a/dev-docs/bidders/gamoshi.md +++ b/dev-docs/bidders/gamoshi.md @@ -27,11 +27,10 @@ sidebarType: 1 | `instl` | optional | Interstitial flag (1 for interstitial, 0 for non-interstitial). | `1` | `integer` | | `pos` | optional | Ad position on the page. | `1` | `integer` | | `rendererUrl` | optional | Custom renderer URL for outstream video. | `'https://example.com/renderer.js'` | `string` | -| `video` | optional | Object containing video targeting parameters. See [Video Object](#gamoshi-video-object) for details. | `video: { playback_method: ['auto_play_sound_off'] }` | `object` | +| `video` | optional | Object containing video targeting parameters. See [Video Object](#video-object) for details. | `video: { playback_method: ['auto_play_sound_off'] }` | `object` | This adapter only requires you to provide your Inventory Id (Supply partner id), and optionally your RTB endpoint. - #### Video Object For details on how these video params work with the params set in the adUnit.mediaTypes.video object.