diff --git a/dev-docs/modules/symitriDapRtdProvider.md b/dev-docs/modules/symitriDapRtdProvider.md index 0717bc10bf..de52b94551 100644 --- a/dev-docs/modules/symitriDapRtdProvider.md +++ b/dev-docs/modules/symitriDapRtdProvider.md @@ -42,14 +42,11 @@ pbjs.setConfig({ waitForIt: true, params: { apiHostname: '', - apiVersion: "x1", - apiAuthToken: '', + apiVersion: 'x1'|'x2', domain: 'your-domain.com', - identityType: 'simpleid'|'compositeid'|'hashedid'|'dap-signature:1.0.0', + identityType: 'simpleid'|'compositeid'|'hashedid', identityValue: '', segtax: 708, - dapEntropyUrl: 'https://sym-dist.symitri.net/dapentropy.js', - dapEntropyTimeout: 1500, pixelUrl: '', } } @@ -68,14 +65,11 @@ Please reach out to your Symitri account representative() to | name | String | Symitri Dap Rtd module name | 'symitriDap' always| | waitForIt | Boolean | Required to ensure that the auction is delayed until prefetch is complete | Optional. Defaults to false | | apiHostname | String | Hostname provided by Symitri | Please reach out to your Symitri account representative() for this value| -| apiVersion | String | This holds the API version | It should be "x1" always | -| apiAuthToken | String | Symitri API AuthToken | Please reach out to your Symitri account representative() for this value | +| apiVersion | String | This holds the API version | Please reach out to your Symitri account representative() for this value | | domain | String | The domain name of your webpage | | -| identityType | String | 'simpleid' or 'compositeid' or 'hashedid' or 'dap-signature:1.0.0' | See the section below labelled "identityType" for more details. | +| identityType | String | 'simpleid' or 'compositeid' or 'hashedid' | See the section below labelled "identityType" for more details. | | identityValue | String | This is optional field to pass user hid. Will be used only if identityType is hid | | | segtax | Integer | The taxonomy for Symitri | The value should be 708 | -| dapEntropyUrl | String | URL to dap entropy script | Optional if the script is directly included on the webpage. Contact your Symitri account rep for more details | -| dapEntropyTimeout | Integer | Maximum time allotted for the entropy calculation to happen | | | pixelUrl | String | Pixel URL provided by Symitri which will be triggered when bid matching with Symitri dealid wins and creative gets rendered | | ### identityType @@ -83,14 +77,16 @@ Use 'simpleid' to pass email or other plain text ids and SymitriRTD Module will Use 'hashedid' to pass in single already hashed id. -Use 'compositeid' to pass in multiple identifiers as key-value pairs as shown below: +Use 'compositeid' to pass in multiple identifiers as key-value pairs as shown below, can also be used for single already hashed identifiers: ```bash { - "identityType1": "identityValue1", - "identityType2": "identityValue2", + "identityType": "compositeid", + "identityValue": "HEM:,ID5:,RampId:", ... } + "identityType": "hashedid", + "identityValue": "", ``` ### Testing