From 6d487c3d1f656d0d1f66d0e7471d188215be4f28 Mon Sep 17 00:00:00 2001 From: "alexandru.calauz" Date: Thu, 6 Jul 2023 13:55:32 +0300 Subject: [PATCH 1/9] md --- dev-docs/bidders/connatix.md | 57 ++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 dev-docs/bidders/connatix.md diff --git a/dev-docs/bidders/connatix.md b/dev-docs/bidders/connatix.md new file mode 100644 index 0000000000..c06399ce6a --- /dev/null +++ b/dev-docs/bidders/connatix.md @@ -0,0 +1,57 @@ +--- +layout: bidder +title: Connatix +description: Connatix Bidder Adapter +biddercode: connatix +gdpr_supported: false +gvl_id: 143 +usp_supported: false +coppa_supported: false +gpp_supported: false +schain_supported: false +dchain_supported: false +userId: none +media_types: banner +safeframes_ok: true +deals_supported: true +floors_supported: true +fpd_supported: false +pbjs: true +pbs: false +prebid_member: false +multiformat_supported: will-bid-on-one +ortb_blocking_supported: true +sidebarType: 1 +--- + +### Bid Params + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|---------------|----------|-----------------------|-----------|-----------| +| `placementId` | required | Placement id | `'ed8a9c16-88ea-4724-aa0d-013c3e595e49'` | `string` | +| `bidfloor` | optional | Floor price | `2.5` | `float` | + +#### Example + +```js +var adUnits = [ + { + code: '1', + mediaTypes: { + video: { + sizes: [[640, 480], [320, 180]], + }, + }, + bids: [ + { + bidder: 'connatix', + params: { + placementId: 'e4984e88-9ff4-45a3-8b9d-33aabcad634e', //required + }, + }, + // Add more bidders and their parameters as needed + ], + }, + // Define more ad units here if necessary +``` \ No newline at end of file From 341e78885f297c0b9cf69a272891d9c7c30a5086 Mon Sep 17 00:00:00 2001 From: Alex Damsa Date: Fri, 14 Jun 2024 14:15:18 +0300 Subject: [PATCH 2/9] updated connatix docs with support for video media type --- dev-docs/bidders/connatix.md | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/dev-docs/bidders/connatix.md b/dev-docs/bidders/connatix.md index ec1773c663..1f2babf15f 100644 --- a/dev-docs/bidders/connatix.md +++ b/dev-docs/bidders/connatix.md @@ -11,7 +11,7 @@ gpp_sids: tcfeu, usp schain_supported: false dchain_supported: false userId: none -media_types: banner +media_types: video, banner safeframes_ok: true deals_supported: true floors_supported: true @@ -32,7 +32,38 @@ sidebarType: 1 | `placementId` | required | Placement id | `'ed8a9c16-88ea-4724-aa0d-013c3e595e49'` | `string` | | `bidfloor` | optional | Floor price | `2.5` | `float` | -#### Example +#### Example Video Media Type + +```js +var adUnits = [ + { + code: "1", + mediaTypes: { + video: { + context: "instream", + placement: 1, + plcmt: 1, + mimes: ["video/mp4"], + minduration: 30, + maxduration: 60, + }, + }, + bids: [ + { + bidder: "connatix", + params: { + placementId: "e4984e88-9ff4-45a3-8b9d-33aabcad634e", // required + bidfloor: 2.5, // optional + }, + }, + // Add more bidders and their parameters as needed + ], + }, + // Define more ad units here if necessary +]; +``` + +#### Example Banner Media Type ```js var adUnits = [ From f3ce97b554f74e0c03bef490260e428942b4ce6f Mon Sep 17 00:00:00 2001 From: Alex Damsa Date: Mon, 17 Jun 2024 12:09:01 +0300 Subject: [PATCH 3/9] improved video example --- dev-docs/bidders/connatix.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-docs/bidders/connatix.md b/dev-docs/bidders/connatix.md index 1f2babf15f..fe7d6d0b36 100644 --- a/dev-docs/bidders/connatix.md +++ b/dev-docs/bidders/connatix.md @@ -43,9 +43,14 @@ var adUnits = [ context: "instream", placement: 1, plcmt: 1, - mimes: ["video/mp4"], + api: [1, 2], + mimes: ["video/mp4", "application/javascript"], minduration: 30, maxduration: 60, + w: 1280, + h: 720, + startdelay: 0, + playerSize: [1280, 720], // recommended }, }, bids: [ From 4d3f37d0ada58e85cefbf86eb99c7d0c3bc35f73 Mon Sep 17 00:00:00 2001 From: Alex Damsa Date: Mon, 17 Jun 2024 12:24:24 +0300 Subject: [PATCH 4/9] reordered properties in mediaTypes.video example --- dev-docs/bidders/connatix.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-docs/bidders/connatix.md b/dev-docs/bidders/connatix.md index fe7d6d0b36..2eed1e1dfa 100644 --- a/dev-docs/bidders/connatix.md +++ b/dev-docs/bidders/connatix.md @@ -41,16 +41,16 @@ var adUnits = [ mediaTypes: { video: { context: "instream", + w: 1280, + h: 720, + playerSize: [1280, 720], // recommended placement: 1, plcmt: 1, api: [1, 2], mimes: ["video/mp4", "application/javascript"], minduration: 30, maxduration: 60, - w: 1280, - h: 720, startdelay: 0, - playerSize: [1280, 720], // recommended }, }, bids: [ From ce7154a5fb4a39d4880dedf908b893221476e0e8 Mon Sep 17 00:00:00 2001 From: Alex Damsa Date: Tue, 18 Jun 2024 14:14:40 +0300 Subject: [PATCH 5/9] updated connatix docs with all supported parameters for video and banner media types --- dev-docs/bidders/connatix.md | 50 +++++++++++++++++++++++++++++++++--- 1 file changed, 47 insertions(+), 3 deletions(-) diff --git a/dev-docs/bidders/connatix.md b/dev-docs/bidders/connatix.md index 2eed1e1dfa..c965db34f3 100644 --- a/dev-docs/bidders/connatix.md +++ b/dev-docs/bidders/connatix.md @@ -24,6 +24,8 @@ ortb_blocking_supported: true sidebarType: 1 --- +
+ ### Bid Params {: .table .table-bordered .table-striped } @@ -32,9 +34,39 @@ sidebarType: 1 | `placementId` | required | Placement id | `'ed8a9c16-88ea-4724-aa0d-013c3e595e49'` | `string` | | `bidfloor` | optional | Floor price | `2.5` | `float` | -#### Example Video Media Type +
-```js +### Media Types + +#### Video + +The following parameters are available for `mediaTypes.video`. + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|----------------|--------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------|-----------| +| context | recommended | instream or outstream |"instream" | string | +| playerSize| required | width, height of the player in pixels | [640,360] - will be translated to w and h in bid request | Array\ | +| mimes | recommended | List of content MIME types supported by the player (see openRTB v2.5 for options) | ["video/mp4"]| Array\| +| protocols | recommended | Supported video bid response protocol values
1: VAST 1.0
2: VAST 2.0
3: VAST 3.0
4: VAST 1.0 Wrapper
5: VAST 2.0 Wrapper
6: VAST 3.0 Wrapper
7: VAST 4.0
8: VAST 4.0 Wrapper | [2,3,5,6] | Array\| +| linearity | recommended | OpenRTB2 linearity. 1: linear (in-stream ad), 2: non-linear (overlay ad) | 1 | integer | +| maxduration | recommended | Maximum video ad duration in seconds. | 30 | integer | +| minduration | recommended | Minimum video ad duration in seconds | 6 | integer | +| playbackmethod | recommended | Playback methods that may be in use. Only one method is typically used in practice. (see [openRTB v2.5](https://www.iab.com/wp-content/uploads/2016/03/OpenRTB-API-Specification-Version-2-5-FINAL.pdf) section 5.10 for options)| [2]| Array\ | +| api | optional | Supported API framework values:
1: VPAID 1.0
2: VPAID 2.0
3: MRAID-1
4: ORMMA
5: MRAID-2 | [2] | Array\ | +| skip | optional | Indicates if the player will allow the video to be skipped, where 0 = no, 1 = yes. | 1 | integer | +| skipmin | optional | Videos of total duration greater than this number of seconds can be skippable; only applicable if the ad is skippable. | 30 | integer | +| skipafter| optional | Number of seconds a video must play before skipping is enabled; only applicable if the ad is skippable. | 6 | integer| +| minbitrate | optional | Minimum bit rate in Kbps. | 300 | integer | +| maxbitrate | optional | Maximum bit rate in Kbps. | 9600 | integer | +| startdelay | recommended | Indicates the start delay in seconds for pre-roll, mid-roll, or post-roll ad placements.
>0: Mid-Roll (value indicates start delay in second)
0: Pre-Roll
-1: Generic Mid-Roll
-2: Generic Post-Roll | 0 | integer | +| placement | recommended | Placement type for the impression. (see OpenRTB v2.5 section 5.9 for options) | 1 | integer | +| plcmt | recommended | Placement type for the impression. (See [OpenRTB v2.6](https://github.com/InteractiveAdvertisingBureau/AdCOM/blob/develop/AdCOM%20v1.0%20FINAL.md) Plcmt Subtypes - Video) | 1 | integer | +| pos | optional | OpenRTB page position value: 0=unknown, 1=above-the-fold, 3=below-the-fold, 4=header, 5=footer, 6=sidebar, 7=full-screen | 1 | integer | + +###### Example video + +```javascript var adUnits = [ { code: "1", @@ -68,7 +100,17 @@ var adUnits = [ ]; ``` -#### Example Banner Media Type +#### Banner + +The following parameters are available for `mediaTypes.banner`. + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|----------------|--------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------|-----------| +| sizes| required | All the sizes of the banner this ad unit can accept. | [[300, 250], [300, 600]] | Array\ > | +| pos | optional | OpenRTB page position value: 0=unknown, 1=above-the-fold, 3=below-the-fold, 4=header, 5=footer, 6=sidebar, 7=full-screen | 1 | integer | + +###### Example banner ```js var adUnits = [ @@ -97,6 +139,8 @@ var adUnits = [ ]; ``` +
+ ### Configuration To maximize revenue efficiency, please enable `iframe` user syncing. From 7ece231b94edfd89243206a958bffd24351dc62a Mon Sep 17 00:00:00 2001 From: Alex Damsa Date: Fri, 5 Jul 2024 16:33:08 +0300 Subject: [PATCH 6/9] fixed lint --- dev-docs/bidders/connatix.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-docs/bidders/connatix.md b/dev-docs/bidders/connatix.md index c965db34f3..7fa5694a69 100644 --- a/dev-docs/bidders/connatix.md +++ b/dev-docs/bidders/connatix.md @@ -64,7 +64,7 @@ The following parameters are available for `mediaTypes.video`. | plcmt | recommended | Placement type for the impression. (See [OpenRTB v2.6](https://github.com/InteractiveAdvertisingBureau/AdCOM/blob/develop/AdCOM%20v1.0%20FINAL.md) Plcmt Subtypes - Video) | 1 | integer | | pos | optional | OpenRTB page position value: 0=unknown, 1=above-the-fold, 3=below-the-fold, 4=header, 5=footer, 6=sidebar, 7=full-screen | 1 | integer | -###### Example video +**Example video** ```javascript var adUnits = [ @@ -110,7 +110,7 @@ The following parameters are available for `mediaTypes.banner`. | sizes| required | All the sizes of the banner this ad unit can accept. | [[300, 250], [300, 600]] | Array\ > | | pos | optional | OpenRTB page position value: 0=unknown, 1=above-the-fold, 3=below-the-fold, 4=header, 5=footer, 6=sidebar, 7=full-screen | 1 | integer | -###### Example banner +**Example banner** ```js var adUnits = [ From b66933292ef087289269ed475819481abde04a1e Mon Sep 17 00:00:00 2001 From: Alex Damsa Date: Mon, 8 Jul 2024 12:38:40 +0300 Subject: [PATCH 7/9] removed custom section separators --- dev-docs/bidders/connatix.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/dev-docs/bidders/connatix.md b/dev-docs/bidders/connatix.md index 7fa5694a69..58725aba10 100644 --- a/dev-docs/bidders/connatix.md +++ b/dev-docs/bidders/connatix.md @@ -24,8 +24,6 @@ ortb_blocking_supported: true sidebarType: 1 --- -
- ### Bid Params {: .table .table-bordered .table-striped } @@ -34,8 +32,6 @@ sidebarType: 1 | `placementId` | required | Placement id | `'ed8a9c16-88ea-4724-aa0d-013c3e595e49'` | `string` | | `bidfloor` | optional | Floor price | `2.5` | `float` | -
- ### Media Types #### Video @@ -139,8 +135,6 @@ var adUnits = [ ]; ``` -
- ### Configuration To maximize revenue efficiency, please enable `iframe` user syncing. From 810b3229b237d55675d7673698ae72a5837e0950 Mon Sep 17 00:00:00 2001 From: Alex Damsa Date: Mon, 8 Jul 2024 15:44:41 +0300 Subject: [PATCH 8/9] changed type --- dev-docs/bidders/connatix.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/connatix.md b/dev-docs/bidders/connatix.md index 58725aba10..a10c87591a 100644 --- a/dev-docs/bidders/connatix.md +++ b/dev-docs/bidders/connatix.md @@ -103,7 +103,7 @@ The following parameters are available for `mediaTypes.banner`. {: .table .table-bordered .table-striped } | Name | Scope | Description | Example | Type | |----------------|--------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------|-----------| -| sizes| required | All the sizes of the banner this ad unit can accept. | [[300, 250], [300, 600]] | Array\ > | +| sizes| required | All the sizes of the banner this ad unit can accept. | [[300, 250], [300, 600]] | [number, number][] | | pos | optional | OpenRTB page position value: 0=unknown, 1=above-the-fold, 3=below-the-fold, 4=header, 5=footer, 6=sidebar, 7=full-screen | 1 | integer | **Example banner** From 0016931240a74cfc91424a202a29acb26431956f Mon Sep 17 00:00:00 2001 From: Alex Damsa Date: Mon, 8 Jul 2024 16:12:34 +0300 Subject: [PATCH 9/9] fixed lint --- dev-docs/bidders/connatix.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/connatix.md b/dev-docs/bidders/connatix.md index a10c87591a..e617085efc 100644 --- a/dev-docs/bidders/connatix.md +++ b/dev-docs/bidders/connatix.md @@ -103,7 +103,7 @@ The following parameters are available for `mediaTypes.banner`. {: .table .table-bordered .table-striped } | Name | Scope | Description | Example | Type | |----------------|--------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------|-----------| -| sizes| required | All the sizes of the banner this ad unit can accept. | [[300, 250], [300, 600]] | [number, number][] | +| sizes| required | All the sizes of the banner this ad unit can accept. | [[300, 250], [300, 600]] | \[number, number\][] | | pos | optional | OpenRTB page position value: 0=unknown, 1=above-the-fold, 3=below-the-fold, 4=header, 5=footer, 6=sidebar, 7=full-screen | 1 | integer | **Example banner**