From 6732dcb66671c95aa9593b9c363d6d2ad02653d5 Mon Sep 17 00:00:00 2001 From: shubhamc-ins Date: Tue, 9 Apr 2024 17:07:29 +0530 Subject: [PATCH 1/5] update docs --- dev-docs/bidders/insticator.md | 53 ++++++++++++++++++++++++++++++++-- 1 file changed, 51 insertions(+), 2 deletions(-) diff --git a/dev-docs/bidders/insticator.md b/dev-docs/bidders/insticator.md index f32d9f7d7c..5795922dd5 100644 --- a/dev-docs/bidders/insticator.md +++ b/dev-docs/bidders/insticator.md @@ -4,7 +4,11 @@ title: Insticator description: Prebid Insticator Bidder Adapter biddercode: insticator tcfeu_supported: true +dsa_supported: true +gpp_sids: tcfeu, usnat, usstate_all, usp usp_supported: true +coppa_supported: true +gdpr_supported: true schain_supported: true media_types: banner, video multiformat_supported: will-bid-on-any @@ -29,7 +33,6 @@ sidebarType: 1 {: .table .table-bordered .table-striped } | Name | Scope | Description | Example | Type | |---------------|----------|---------------------------|----------------------|----------| -| `sizes` | Required | The ad sizes provided by Insticator | `[[300, 250], [300, 600]]` | `array` | | `pos` | optional | ad position as per IAB standards | `1` | `number` | ### Example @@ -59,7 +62,53 @@ var adUnitsBannerOnly = [ ]; ``` -### video parameters +#### First Party Data + +In release 8.44 and later, Insticator has added support for first party data which are optional and partners can send us. The following fields are supported: + +* ortb2.site.keywords +* ortb2.site.content.* +* ortb2.site.search +* ortb2.site.cat +* ortb2.site.pagecat +* ortb2.site.sectioncat +* ortb2.user.ext.* +* ortb2.user.data.* + + +Here is an example first party data that insticator support. + +```javascript +pbjs.setConfig({ + ortb2: { + site: { + keywords: "kw1,kw2", + content: { + title: 'title', + genre: 'rock', + }, + cat: ['IAB1-1'], + pagecat: ['IAB1-1'], + sectioncat: ['IAB1-1'], + ext: { + data: { + prodtype: ["a","b"] + } + } + }, + user: { + ext: { + data: { + ucat:["anything"] + } + } + } + } +}; +``` + +### Media Types +#### Video parameters {: .table .table-bordered .table-striped } | Name | Scope | Description | Example | From 5cd93e18707e387f6509018e68a9e75725e2f0f4 Mon Sep 17 00:00:00 2001 From: shubhamc-ins Date: Tue, 9 Apr 2024 17:27:58 +0530 Subject: [PATCH 2/5] update for optional endpoint url --- dev-docs/bidders/insticator.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/dev-docs/bidders/insticator.md b/dev-docs/bidders/insticator.md index 5795922dd5..6d04dad3bf 100644 --- a/dev-docs/bidders/insticator.md +++ b/dev-docs/bidders/insticator.md @@ -20,13 +20,15 @@ sidebarType: 1 ### Bid Params {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|---------------|----------|---------------------------|----------------------|----------| -| `adUnitId` | Required | The ad unit ID provided by Insticator | `'test'` | `string` | -| `yob` | optional | Year of Birth | `'1982'` | `string` | -| `gender` | optional | Gender | `'M'` | `string` | -| `instl` | optional | 1 = the ad is interstitial or full screen, 0 = not interstitial. | `1` | `number` | -| `pos` | optional | ad position as per IAB standards | `1` | `number` | +| Name | Scope | Description | Example | Type | +|-----------------------------|----------|-----------------------------------------------------------------------------------------|------------------------------------|----------| +| `adUnitId` | Required | The ad unit ID provided by Insticator | `'test'` | `string` | +| `yob` | optional | Year of Birth | `'1982'` | `string` | +| `gender` | optional | Gender | `'M'` | `string` | +| `instl` | optional | 1 = the ad is interstitial or full screen, 0 = not interstitial. | `1` | `number` | +| `pos` | optional | ad position as per IAB standards | `1` | `number` | +| `bid_endpoint_request_url` | optional | Url string representing the endpoint Insticator adaptor should make the request bid to. | `https://ex.ingage.com/v1/openrtb` | `string` | + ### Banner Params From 4f34c78aa33611d6771cb481bf00683de1176da0 Mon Sep 17 00:00:00 2001 From: shubhamc-ins Date: Tue, 9 Apr 2024 21:05:54 +0530 Subject: [PATCH 3/5] add request url data --- dev-docs/bidders/insticator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/insticator.md b/dev-docs/bidders/insticator.md index 6d04dad3bf..b443a7a445 100644 --- a/dev-docs/bidders/insticator.md +++ b/dev-docs/bidders/insticator.md @@ -27,7 +27,7 @@ sidebarType: 1 | `gender` | optional | Gender | `'M'` | `string` | | `instl` | optional | 1 = the ad is interstitial or full screen, 0 = not interstitial. | `1` | `number` | | `pos` | optional | ad position as per IAB standards | `1` | `number` | -| `bid_endpoint_request_url` | optional | Url string representing the endpoint Insticator adaptor should make the request bid to. | `https://ex.ingage.com/v1/openrtb` | `string` | +| `bid_endpoint_request_url` | optional | Url string representing the endpoint Insticator adaptor should make the request bids to. | `https://ex.ingage.com/v1/openrtb` | `string` | ### Banner Params From 90246bbb0e9744a60a30eefef13851738dba718e Mon Sep 17 00:00:00 2001 From: shubhamc-ins Date: Wed, 17 Apr 2024 15:13:04 +0530 Subject: [PATCH 4/5] update version --- dev-docs/bidders/insticator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/insticator.md b/dev-docs/bidders/insticator.md index b443a7a445..0be41d0b3d 100644 --- a/dev-docs/bidders/insticator.md +++ b/dev-docs/bidders/insticator.md @@ -66,7 +66,7 @@ var adUnitsBannerOnly = [ #### First Party Data -In release 8.44 and later, Insticator has added support for first party data which are optional and partners can send us. The following fields are supported: +In release 8.45 and later, Insticator has added support for first party data which are optional and partners can send us. The following fields are supported: * ortb2.site.keywords * ortb2.site.content.* From 7e54691f3019a855b66db8e1b5a3a62f83e6db7c Mon Sep 17 00:00:00 2001 From: shubhamc-ins Date: Wed, 17 Apr 2024 15:18:17 +0530 Subject: [PATCH 5/5] fix linting --- dev-docs/bidders/insticator.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/dev-docs/bidders/insticator.md b/dev-docs/bidders/insticator.md index 0be41d0b3d..ec3b8565f7 100644 --- a/dev-docs/bidders/insticator.md +++ b/dev-docs/bidders/insticator.md @@ -29,7 +29,6 @@ sidebarType: 1 | `pos` | optional | ad position as per IAB standards | `1` | `number` | | `bid_endpoint_request_url` | optional | Url string representing the endpoint Insticator adaptor should make the request bids to. | `https://ex.ingage.com/v1/openrtb` | `string` | - ### Banner Params {: .table .table-bordered .table-striped } @@ -77,7 +76,6 @@ In release 8.45 and later, Insticator has added support for first party data whi * ortb2.user.ext.* * ortb2.user.data.* - Here is an example first party data that insticator support. ```javascript