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

R2B2 Analytics Adapter: Adds documentation for the new R2B2 Analytics Adapter #5758

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
37 changes: 37 additions & 0 deletions dev-docs/analytics/r2b2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
layout: analytics
title: R2B2
description: R2B2 Analytics Adapter
modulecode: r2b2
prebid_member: false
tcfeu_supported: true
usp_supported: true
coppa_supported: true
gvl_id: 1235
enable_download: true
---

#### About

The R2B2 Analytics Adapter enables data collection for analysis and reporting purposes. Access to collected data and the ability to start data collection require prior approval from R2B2. For approval, please contact our account team on [[email protected]](mailto:[email protected]).

#### Analytics Options

| Name | Scope | Example | Type | Description |
|-----------|----------|-------------|----------|----------------------------------------------------------------|
| `domain` | required | example.com | `string` | R2B2 approved domain where data collection occurs |
| `configId` | optional | 1 | `int` | Identifier for different configurations under the same domain (e.g., 1 for mobile, 2 for desktop) |
| `configVer` | optional | 1 | `int` | Version number for configurations sharing the same `configId` |

#### Example Configuration

```js
pbjs.enableAnalytics({
provider: 'r2b2',
options: {
domain: 'example.com',
configId: 1,
configVer: 1
}
});
```
Loading