From cb86d95fa79365b188c5f2eb26c6c0b48543a792 Mon Sep 17 00:00:00 2001 From: Renee Woo Date: Wed, 24 Feb 2021 15:44:45 +0800 Subject: [PATCH 1/3] 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/3] 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` | From 907aba0794d081ba6fdf20fe23d1391e1a456416 Mon Sep 17 00:00:00 2001 From: Renee Woo Date: Fri, 9 May 2025 11:41:18 +0800 Subject: [PATCH 3/3] add jixieId module md file --- dev-docs/modules/userid-submodules/jixie.md | 49 +++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 dev-docs/modules/userid-submodules/jixie.md diff --git a/dev-docs/modules/userid-submodules/jixie.md b/dev-docs/modules/userid-submodules/jixie.md new file mode 100644 index 0000000000..8fa3f89cfd --- /dev/null +++ b/dev-docs/modules/userid-submodules/jixie.md @@ -0,0 +1,49 @@ +--- +layout: userid +title: Jixie ID +description: Jixie ID User ID sub-module +useridmodule: jixieId +bidRequestUserId: jixieId +eidsource: jixie.io +example: '"1111"' +--- + + +The Jixie ID module is specially useful for publishers that will connect with Jixie bidder through PrebidServer adapter feature of PrebidJS and/or for publishers that are unable to integrate with the Jixie ID/event script to still acquire the important Jixie client ID for users. + +For assistance setting up your module, please contact us at + +Add the Jixie ID to your Prebid.js Package with: + +```bash +gulp build --modules=userId,jixieIdSystem +``` + +## Jixie ID Registration + +Please reach out to [partners.jixie.io](mailto:partners.jixie.io) to request your `accountid` + +## Jixie ID Configuration + +{: .table .table-bordered .table-striped } + +| Param under userSync.userIds[] | Scope | Type | Description | Example | +| --- | --- | --- | --- | --- | +| name | Required | String | The name of Module | `"jixieId"` | +| params | optional | Object | Container of all module params. | | +| params.accountid | optional | String | This is your `accountid` as provided by Jixie. | `Mo165qXxxx` | + +## DMD ID Example + +```javascript +pbjs.setConfig({ + userSync: { + userIds: [{ + name: 'jixieId', + params: { + accountid: 'Mo165qXxxx' // provided to you by Jixie + } + }] + } +}); +```