From 24f641ca946bfa5b3477377220e5dc3096608b41 Mon Sep 17 00:00:00 2001 From: Renzo Toscani Date: Thu, 8 Oct 2020 12:51:29 -0300 Subject: [PATCH 1/2] add IDx User Id docs --- dev-docs/modules/userId.md | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/dev-docs/modules/userId.md b/dev-docs/modules/userId.md index 8624cca848..7b0ac2cf31 100644 --- a/dev-docs/modules/userId.md +++ b/dev-docs/modules/userId.md @@ -58,7 +58,7 @@ of sub-objects. The table below has the options that are common across ID system {: .table .table-bordered .table-striped } | Param under userSync.userIds[] | Scope | Type | Description | Example | | --- | --- | --- | --- | --- | -| name | Required | String | May be: `"britepoolId"`, `"criteo"`, `"haloId"`, `"id5id"`, `identityLink`, `"intentIqId"`, `"liveIntentId"`, `"lotamePanoramaId"`, `"merkleId"`, `"netId"`, `"parrableId"`, `"quantcastId"`, `"pubCommonId"`, `"pubProvidedId"`, `"sharedId"`, `"unifiedId"`, `"zeotapIdPlus"` | `"unifiedId"` | +| name | Required | String | May be: `"britepoolId"`, `"criteo"`, `"haloId"`, `"id5id"`, `identityLink`, `"idx"`, `"intentIqId"`, `"liveIntentId"`, `"lotamePanoramaId"`, `"merkleId"`, `"netId"`, `"parrableId"`, `"quantcastId"`, `"pubCommonId"`, `"pubProvidedId"`, `"sharedId"`, `"unifiedId"`, `"zeotapIdPlus"` | `"unifiedId"` | | params | Based on User ID sub-module | Object | | | | storage | Optional | Object | The publisher can specify some kind of local storage in which to store the results of the call to get the user ID. This can be either cookie or HTML5 storage. This is not needed when `value` is specified or the ID system is managing its own storage | | | storage.type | Required | String | Must be either `"cookie"` or `"html5"`. This is where the results of the user ID will be stored. | `"cookie"` | @@ -357,6 +357,38 @@ pbjs.setConfig({ }); {% endhighlight %} +### IDx + +IDX is an alternative cookieless ID that uses anonymized and verified identifiers, provided by the users with explicit consent, which enables buy, sell, and measure targeted advertising at scale. IDX is created by Retargetly, a data company that owns the biggest consumer graph in Latin America. + +This sub-module enables the user’s IDx to be available in the bid request. + +More information of IDx can be found in [https://idx.lat/](https://idx.lat/) + +Add it to your Prebid.js package with: + +{: .alert.alert-info :} +gulp build --modules=idxIdSystem + +#### IDx Configuration + +{: .table .table-bordered .table-striped } +| Param under userSync.userIds[] | Scope | Type | Description | Example | +| --- | --- | --- | --- | --- | +| name | Required | String | `"idx"` | `"idx"` | + +#### IDx Example + +{% highlight javascript %} +pbjs.setConfig({ + userSync: { + userIds: [{ + name: "idx" + }] + } +}); +{% endhighlight %} + ### IntentIQ ID The IntentIQ ID solution is provided by intentiq.com. From e38f7db12973fc8c925d21d1da8f966507ee8989 Mon Sep 17 00:00:00 2001 From: Renzo Toscani Date: Thu, 8 Oct 2020 17:50:26 -0300 Subject: [PATCH 2/2] add IDx entry --- download.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/download.md b/download.md index 02bb783a1e..60ee10072f 100644 --- a/download.md +++ b/download.md @@ -524,6 +524,9 @@ Prebid.js is open source software that is offered for free as a convenience. Whi
+ +
+