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

New 33Across Analytics Adapter 1.0.0 #4944

Merged
merged 14 commits into from
Nov 16, 2023
77 changes: 77 additions & 0 deletions dev-docs/analytics/33across.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
---
layout: analytics
title: 33Across
description: 33Across Analytics Adapter
modulecode: 33across
gdpr_supported: true
usp_supported: true
gpp_supported: true
coppa_supported: true
gvl_id: 58
enable_download: true
---

#### About

This analytics adapter collects data about the performance of your ad slots
for each auction run on your site. It also provides insight into how identifiers
from the
[33Across User ID Sub-module](https://docs.prebid.org/dev-docs/modules/userid-submodules/33across.html)
and other user ID sub-modules improve your monetization. The data is sent at
the earliest opportunity for each auction to provide a more complete picture of
your ad performance.

The analytics adapter is free to use!
However, the publisher must work with our account management team to obtain a
Publisher/Partner ID (PID) and enable Analytics for their account.
To get a PID and to have the publisher account enabled for Analytics,
you can reach out to our team at the following email - [email protected]

Check failure on line 28 in dev-docs/analytics/33across.md

View workflow job for this annotation

GitHub Actions / run markdownlint

Bare URL used

dev-docs/analytics/33across.md:28:56 MD034/no-bare-urls Bare URL used [Context: "[email protected]"] https://github.com/DavidAnson/markdownlint/blob/v0.29.0/doc/md034.md
macinjosh32 marked this conversation as resolved.
Show resolved Hide resolved

If you are an existing publisher and you already use a 33Across PID,
you can reach out to [email protected]

Check failure on line 31 in dev-docs/analytics/33across.md

View workflow job for this annotation

GitHub Actions / run markdownlint

Bare URL used

dev-docs/analytics/33across.md:31:22 MD034/no-bare-urls Bare URL used [Context: "[email protected]"] https://github.com/DavidAnson/markdownlint/blob/v0.29.0/doc/md034.md
macinjosh32 marked this conversation as resolved.
Show resolved Hide resolved
to have your account enabled for analytics.

The 33Across privacy policy is at <https://www.33across.com/privacy-policy/>.

#### Analytics Options

{: .table .table-bordered .table-striped }
| Name | Scope | Example | Type | Description |
|-----------|----------|---------|----------|-------------|
| `pid` | required | abc123 | `string` | 33Across Publisher ID |
| `timeout` | optional | 10000 | `int` | Milliseconds to wait after last seen auction transaction before sending report (default 10000). |

#### Configuration

The data is sent at the earliest opportunity for each auction to provide
a more complete picture of your ad performance, even if the auction is interrupted
by a page navigation. At the latest, the adapter will always send the report
when the page is unloaded, at the end of the auction, or after the timeout,
whichever comes first.

In order to guarantee consistent reports of your ad slot behavior, we recommend
including the GPT Pre-Auction Module (`gptPreAuction` if compiling from source).
This module is included by default when Prebid is downloaded.

Enable the 33Across Analytics Adapter in Prebid.js using the analytics provider `33across`
and options as seen in the example below.

#### Example Configuration

```js
pbjs.enableAnalytics({
provider: '33across',
options: {
/**
* The 33Across Publisher ID.
*/
pid: 'abc123',
/**
* Timeout in milliseconds after which an auction report
* will be sent regardless of auction state.
* [optional]
*/
timeout: 10000
}
});
```
Loading