From 4a96e1e149d27b62667d5840a6faa9283ccfbab4 Mon Sep 17 00:00:00 2001 From: nima Date: Tue, 18 Apr 2023 17:57:07 +0330 Subject: [PATCH 1/2] Updated docs for Vidoomy blocking supported --- dev-docs/bidders/vidoomy.md | 64 +++++++++++++++++++++++++++++++++---- 1 file changed, 57 insertions(+), 7 deletions(-) diff --git a/dev-docs/bidders/vidoomy.md b/dev-docs/bidders/vidoomy.md index aba41d2353..18be825a86 100644 --- a/dev-docs/bidders/vidoomy.md +++ b/dev-docs/bidders/vidoomy.md @@ -12,23 +12,73 @@ coppa_supported: true pbs: true sidebarType: 1 schain_supported: true +ortb_blocking_supported: true --- ### Note: + [Vidoomy](https://vidoomy.com/), for more info please contact support@vidoomy.com ### Bid Params {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|------------------|----------|------------------|------------------------------|----------| -| `id` | required | id | `123123` | `string` | -| `pid` | required | pid | `'123123'` | `string` | +| Name | Scope | Description | Example | Type | +|-------|----------|-------------|------------|----------| +| `id` | required | id | `123123` | `string` | +| `pid` | required | pid | `'123123'` | `string` | ### Bid Params (Prebid Server) {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|------------------|----------|------------------|------------------------------|----------| -| `zoneId` | required | Zone Id | "123123" | `string` | + +| Name | Scope | Description | Example | Type | +|----------|----------|---------------------------------------------|-------------------|----------------| +| `zoneId` | required | Zone Id | "123123" | `string` | +| `bcat` | optional | List of blocked advertiser categories (IAB) | `['IAB1-1']` | `string array` | +| `badv` | optional | Blocked Advertiser Domains | `['example.com']` | `string array` | +| `bapp` | optional | blocked advertiser mobile app bundles | `['app.com']` | `string array` | +| `btype` | optional | blocked creative types (e.g. XHTML) | `[1, 2, 3]` | `int array` | +| `battr` | optional | blocked creative attributes (e.g. audio) | `[1, 2, 3]` | `int array` | + +Notes: + +- Preferred to provide the `bcat`, `badv`, `bapp`, `btype` and `battr` within the first party data (above). When both + methods are provided, first + party data values will be prioritized. + +### First Party Data + +Publishers can use the `ortb2` configuration parameter to provide First Party Data. + +#### OpenRTB Parameters + +The following table contains currently supported parameters we parse. + +{: .table .table-bordered .table-striped } + +| Name | Scope | Description | Example | Type | +|---------|----------|---------------------------------------------|-------------------|---------| +| `bcat` | optional | List of blocked advertiser categories (IAB) | `['IAB1-1']` | `Array` | +| `badv` | optional | Blocked Advertiser Domains | `['example.com']` | `Array` | +| `bapp` | optional | blocked advertiser mobile app bundles | `['app.com']` | `Array` | +| `btype` | optional | blocked creative types (e.g. XHTML) | `[1, 2, 3]` | `Array` | +| `battr` | optional | blocked creative attributes (e.g. audio) | `[1, 2, 3]` | `Array` | + +Notes: + +- will extract the bcat,badv,bapp,btype,battr if passed within `ortb2` + +Example configuration: + +``` +pbjs.setConfig({ + ortb2: { + bcat: ['IAB1-1'], + badv: ['example.com'], + bapp: ['app.com'], + btype: [1, 2, 3], + battr: [1, 2, 3] + } +}); +``` From d079bc9b2ae39072933329a018bf15608953d93a Mon Sep 17 00:00:00 2001 From: nisar Date: Fri, 7 Apr 2023 14:56:55 +0530 Subject: [PATCH 2/2] Updated documentation for Vidoomy bidfloor support --- dev-docs/bidders/vidoomy.md | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/dev-docs/bidders/vidoomy.md b/dev-docs/bidders/vidoomy.md index 18be825a86..19476f409c 100644 --- a/dev-docs/bidders/vidoomy.md +++ b/dev-docs/bidders/vidoomy.md @@ -13,28 +13,31 @@ pbs: true sidebarType: 1 schain_supported: true ortb_blocking_supported: true +userIds: all +floors_supported: true --- ### Note: [Vidoomy](https://vidoomy.com/), for more info please contact support@vidoomy.com -### Bid Params +### Client Side Bid Params {: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|------------------|----------|------------------|------------------------------|----------| +| `id` | required | id | `'123123'` | `string` | +| `pid` | required | pid | `'123123'` | `string` | +| `bidfloor` | optional | CPM bidfloor in USD | `0.08` | `float` | -| Name | Scope | Description | Example | Type | -|-------|----------|-------------|------------|----------| -| `id` | required | id | `123123` | `string` | -| `pid` | required | pid | `'123123'` | `string` | -### Bid Params (Prebid Server) +### Server Side Bid Params (Prebid Server) {: .table .table-bordered .table-striped } | Name | Scope | Description | Example | Type | |----------|----------|---------------------------------------------|-------------------|----------------| -| `zoneId` | required | Zone Id | "123123" | `string` | +| `zoneId` | required | Zone Id | `'123123'` | `string` | | `bcat` | optional | List of blocked advertiser categories (IAB) | `['IAB1-1']` | `string array` | | `badv` | optional | Blocked Advertiser Domains | `['example.com']` | `string array` | | `bapp` | optional | blocked advertiser mobile app bundles | `['app.com']` | `string array` | @@ -81,4 +84,4 @@ pbjs.setConfig({ battr: [1, 2, 3] } }); -``` +``` \ No newline at end of file