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

Update to prebid website for the new GrowthCode Analysis Module #4029

Merged
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
45 changes: 45 additions & 0 deletions dev-docs/analytics/growthcode.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
layout: analytics
title: Growthcode
description: GrowthCode Analytics Adapter
modulecode: growthCodeAnalytics
enable_download: false
---

#### Registration

[GrowthCode](https://growthcode.io) offers scaled infrastructure-as-a-service to
empower independent publishers to harness data and take control of identity and
audience while rapidly aligning to industry changes and margin pressure.

Please visit [https://growthcode.io/](https://growthcode.io/) for more information.

#### Analytics Options

| Param enableAnalytics | Scope | Type | Description | Example |
|-----------------------|----------|--------|---------------------------------------------------------|--------------------------|
| provider | Required | String | The name of this Adapter. | `"growthCodeAnalytics"` |
| params | Required | Object | Details of module params. | |
| params.pid | Required | String | This is the Customer ID value obtained from GrowthCode. | `"<Contact GrowthCode>"` |
| params.url | Optional | String | Custom URL for server | |
| params.trackEvents | Required | String | Name if the variable that holds your publisher ID | |

#### Example Configuration

```javascript
pbjs.enableAnalytics({
provider: 'growthCodeAnalytics',
options: {
pid: '<Contact GrowthCode>',
trackEvents: [
'auctionEnd',
'bidAdjustment',
'bidTimeout',
'bidRequested',
'bidResponse',
'noBid',
'bidWon',
'bidderDone']
}
});
```