Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

symitriDapRTDProvider - Update docs to handle cases where no identity… #5973

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion dev-docs/modules/symitriDapRtdProvider.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Please reach out to your Symitri account representative(<[email protected]>) to
| apiVersion | String | This holds the API version | Please reach out to your Symitri account representative(<[email protected]>) for this value |
| domain | String | The domain name of your webpage | |
| 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 | |
| identityValue | String | This is a required field to pass HEM and/or EIDs | See the "identity" section below for more details. |
| segtax | Integer | The taxonomy for Symitri | The value should be 708 |
| pixelUrl | String | Pixel URL provided by Symitri which will be triggered when bid matching with Symitri dealid wins and creative gets rendered | |

Expand All @@ -89,6 +89,19 @@ Use 'compositeid' to pass in multiple identifiers as key-value pairs as shown be
"identityValue": "<hem>",
```

### Identity

In the event there is no identity, the ""identityType" and "identityValue" can be set to:

```javascript
pbjs.setConfig({
...
identityType: 'compositeid',
identityValue: 'HEM:',
...
});
```

### Testing

To view an example of available segments returned by dap:
Expand Down