From cb86d95fa79365b188c5f2eb26c6c0b48543a792 Mon Sep 17 00:00:00 2001 From: Renee Woo Date: Wed, 24 Feb 2021 15:44:45 +0800 Subject: [PATCH 1/2] as we are adding the prebid-server adaptor and introduced a few extra params , they are added here too (note: those 3 new params would also reach the headerbid adserver in the case of prebid "clientside HB" too. So all good) --- dev-docs/bidders/jixie.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-docs/bidders/jixie.md b/dev-docs/bidders/jixie.md index c3bfec8ea2..3d1ffa7c39 100644 --- a/dev-docs/bidders/jixie.md +++ b/dev-docs/bidders/jixie.md @@ -19,4 +19,8 @@ To use this bidder you will need an account and a valid unit from us. For furthe {: .table .table-bordered .table-striped } | Name | Scope | Description | Example | Type | |-------------------|----------|----------------------------------------------------------------------------------------------------------------------|-----------------------------------------------|------------| -| `unit` | required | The unit from jixie Digital. | `1000012-VyuoGmDF0A` | `string` | +| `unit` | required | The unit from jixie | `1000012-VyuoGmDQQQ` | `string` | +| `accountid` | optional | The accountid from jixie | `12345678901234567890` | `string` | +| `jxprop1` | optional | special property #1 | `somethingspecial1` | `string` | +| `jxprop2` | optional | special property #2 | `somethingspecial2` | `string` | + From 84d5474ef75f58bc0361c79ef82fc02e3a361a9e Mon Sep 17 00:00:00 2001 From: bretg Date: Tue, 2 Mar 2021 16:57:08 -0500 Subject: [PATCH 2/2] added quotes around string params --- dev-docs/bidders/jixie.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-docs/bidders/jixie.md b/dev-docs/bidders/jixie.md index 3d1ffa7c39..b9241665de 100644 --- a/dev-docs/bidders/jixie.md +++ b/dev-docs/bidders/jixie.md @@ -19,8 +19,8 @@ To use this bidder you will need an account and a valid unit from us. For furthe {: .table .table-bordered .table-striped } | Name | Scope | Description | Example | Type | |-------------------|----------|----------------------------------------------------------------------------------------------------------------------|-----------------------------------------------|------------| -| `unit` | required | The unit from jixie | `1000012-VyuoGmDQQQ` | `string` | -| `accountid` | optional | The accountid from jixie | `12345678901234567890` | `string` | -| `jxprop1` | optional | special property #1 | `somethingspecial1` | `string` | -| `jxprop2` | optional | special property #2 | `somethingspecial2` | `string` | +| `unit` | required | The unit from jixie | `'1000012-VyuoGmDQQQ'` | `string` | +| `accountid` | optional | The accountid from jixie | `'12345678901234567890'` | `string` | +| `jxprop1` | optional | special property #1 | `'somethingspecial1'` | `string` | +| `jxprop2` | optional | special property #2 | `'somethingspecial2'` | `string` |