Skip to content

Commit

Permalink
Add example and link to Universal ID configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaIntentIQ committed Nov 8, 2024
1 parent 4e18140 commit 1bbd163
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions dev-docs/analytics/intentiq.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,23 @@ The reportExternalWin function allows for manual reporting, meaning that reports

To enable this manual reporting functionality, you must set the manualWinReportEnabled parameter in Intent IQ Unified ID module configuration is true. Once enabled, reports can be manually triggered using the reportExternalWin function.

```js
pbjs.setConfig({
userSync: {
userIds: [{
name: "intentIqId",
params: {
partner: 123456, // valid partner id
browserBlackList: "chrome",
manualWinReportEnabled: true
}
}]
}
});
```

You can find more information and configuration examples in the [Intent IQ Universal ID module](https://docs.prebid.org/dev-docs/modules/userid-submodules/intentiq.html#configuration)

### Calling the reportExternalWin Function

To call the reportExternalWin function, you need to pass the partner_id parameter as shown in the example below:
Expand Down

0 comments on commit 1bbd163

Please sign in to comment.