From 22977045a0bf74f39e7e3a7108131fe413c1e208 Mon Sep 17 00:00:00 2001 From: Omer Koren Date: Tue, 18 Jun 2019 13:08:56 +0300 Subject: [PATCH 1/2] Update undertone.md Added documentation for recommended configuration settings for undertone which includes iframe based user sync --- dev-docs/bidders/undertone.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/dev-docs/bidders/undertone.md b/dev-docs/bidders/undertone.md index 1e0945bfcc..92ee28eb66 100644 --- a/dev-docs/bidders/undertone.md +++ b/dev-docs/bidders/undertone.md @@ -15,3 +15,24 @@ biddercode: undertone |---------------|----------|-------------------------------------------|------------|-----------| | `placementId` | optional | Your placement ID (provided by undertone) | `"13as14d0"` | `string` | | `publisherId` | required | publisher ID (provided by undertone) | `12345` | `integer` | + +### Configuration + +To maximize revenue efficiency, please enable iframe-based user syncing. This functionality will improve user match rates and will help increasing the bid rate. + +Example code to enable iframe user-sync for Undertone: + +```javascript +pbjs.setConfig({ + userSync: { + filterSettings: { + iframe: { + bidders: ['undertone'], + filter: 'include' + } + } + } +}); +``` + +Note: Combine the above the configuration with any other UserSync configuration. Multiple setConfig() calls overwrite each other and only last call for a given attribute will take effect. From 1903f8dad04a5713a3206eb377e0299bc67d5b7f Mon Sep 17 00:00:00 2001 From: Oran Date: Thu, 23 Jul 2020 09:45:17 +0300 Subject: [PATCH 2/2] add video object doc --- dev-docs/bidders/undertone.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/dev-docs/bidders/undertone.md b/dev-docs/bidders/undertone.md index 92ee28eb66..310c8e97af 100644 --- a/dev-docs/bidders/undertone.md +++ b/dev-docs/bidders/undertone.md @@ -16,6 +16,16 @@ biddercode: undertone | `placementId` | optional | Your placement ID (provided by undertone) | `"13as14d0"` | `string` | | `publisherId` | required | publisher ID (provided by undertone) | `12345` | `integer` | +#### Video Object + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|------------------|----------|------------------------------------------------|-------------------------------------------|-----------------| +| `playbackMethod` | optional | Playback method supported by the publisher.
`1`: Auto-play sound on
`2`: Auto-play sound off
`3`: Click-to-play sound on
`4`: Mouse-over sound on| `1` | `integer` | +| `maxDuration` | optional | Maximum video ad duration in seconds. | `30` | `integer` | +| `skippable` | optional | Skippability of the inventory. Possible values: `true` - only skippable inventory is allowed, `false` - skippable inventory is not allowed, null/missing - all inventory is allowed (default value). | `true` | `boolean` | + + ### Configuration To maximize revenue efficiency, please enable iframe-based user syncing. This functionality will improve user match rates and will help increasing the bid rate.