Skip to content

Commit 0016ad1

Browse files
authored
add dev docs for IntimateMerger Analytics (#6525)
* add dev docs for IntimateMerger Analytics * add dev docs for IntimateMerger Analytics: update optional cid * Update dev-docs/analytics/imAnalytics.md
1 parent 457c7c6 commit 0016ad1

1 file changed

Lines changed: 47 additions & 0 deletions

File tree

dev-docs/analytics/imAnalytics.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
layout: analytics
3+
title: IM Analytics
4+
description: IM Analytics Adapter for Prebid.js
5+
modulecode: imAnalytics
6+
gdpr_supported: false
7+
usp_supported: true
8+
gpp_supported: true
9+
coppa_supported: true
10+
enable_download: true
11+
---
12+
13+
## Description
14+
15+
Analytics Adapter for IM-DMP.
16+
17+
Please visit [intimatemerger.com/im-uid](https://intimatemerger.com/r/im-uid) and request your Customer ID to get started.
18+
19+
If you are an existing publisher and you already use [IM-UID](/dev-docs/modules/userid-submodules/imuid.html), you can use the same Customer ID for this analytics adapter.
20+
21+
By enabling this adapter, you agree to Intimate Merger's privacy policy at <https://corp.intimatemerger.com/privacypolicy/>.
22+
23+
## Configuration
24+
25+
To enable the IM Analytics adapter, configure it in your Prebid.js setup. Use `imAnalytics` as the provider and provide the appropriate `options`.
26+
27+
### Analytics Options
28+
29+
{: .table .table-bordered .table-striped }
30+
| Parameter | Scope | Type | Example | Description |
31+
| --- | --- | --- | --- | --- |
32+
| `cid` | optional | number | 5126 | The Customer ID provided by Intimate Merger. |
33+
| `waitTimeout` | optional | number | 1500 | Wait time in milliseconds before sending batched requests. (Default: 1500) |
34+
35+
### Example Configuration
36+
37+
```javascript
38+
pbjs.enableAnalytics({
39+
provider: 'imAnalytics',
40+
options: {
41+
/* Optional: Customer ID. Set the Customer ID assigned to you. */
42+
cid: 5126,
43+
/* Optional: Wait 2 seconds */
44+
waitTimeout: 2000
45+
}
46+
});
47+
```

0 commit comments

Comments
 (0)