From b06b0ca82c92837760c63750a1e5a4aaf930d482 Mon Sep 17 00:00:00 2001
From: ucfunnel <39581136+ucfunnel@users.noreply.github.com>
Date: Wed, 11 Jul 2018 09:36:00 +0800
Subject: [PATCH] Add instream video and native support for ucfunnel adapter
(#836)
---
dev-docs/bidders/ucfunnel.md | 46 +++++++++++++++++++++++++++---------
1 file changed, 35 insertions(+), 11 deletions(-)
diff --git a/dev-docs/bidders/ucfunnel.md b/dev-docs/bidders/ucfunnel.md
index e99158ace0..d268f5617d 100644
--- a/dev-docs/bidders/ucfunnel.md
+++ b/dev-docs/bidders/ucfunnel.md
@@ -8,21 +8,45 @@ hide: true
biddercode: ucfunnel
biddercode_longer_than_12: false
prebid_1_0_supported : true
+media_types: video, native
gdpr_supported: true
---
-### bid params Prebid 0.34
+**Table of Contents**
-{: .table .table-bordered .table-striped }
-| Name | Scope | Description | Example |
-|:-----------|:---------|:------------|:-----------------|
-| `adid` | required | | |
-| `` | optional | | |
+- [Bid params](#ucfunnel-bid-params)
+- [Examples](#ucfunnel-examples)
+
+
-### bid params Prebid 1.x
+### Bid params
{: .table .table-bordered .table-striped }
-| Name | Scope | Description | Example |
-|:-----------|:---------|:------------|:-----------------|
-| `adid` | required | | |
-| `` | optional | | |
+| Name | Scope | Description | Example |
+|:------------|:---------|:-------------------------------------------------|:-----------------|
+| `adid` | required | The ad unit ID retrived from ucfunnel dashboard | |
+| `` | optional | | |
+
+{% highlight js %}
+var adUnits = [{
+ code: 'div-gpt-ad-1460505748511-01',
+ sizes: [
+ [300, 250]
+ ],
+ bids: [{
+ bidder: 'ucfunnel',
+ params: {
+ adid: '123456789'
+ }
+ }]
+}]
+{% endhighlight %}
+
+{: .alert.alert-info :}
+Sizes set in the `adUnit` object will also apply to the ucfunnel bid requests.
+
+
+### Examples
+ - Banner Ads(https://cdn.aralego.net/ucfad/test/ucfunnel/compliance/pbjs_banner.html)
+ - Video Ads (Instream)(https://cdn.aralego.net/ucfad/test/ucfunnel/compliance/pbjs_video.html)
+ - Native Ads(https://cdn.aralego.net/ucfad/test/ucfunnel/compliance/pbjs_native.html)
\ No newline at end of file