Skip to content

Commit

Permalink
Added GrowthCode Analyics to Docs (prebid#4029)
Browse files Browse the repository at this point in the history
  • Loading branch information
southern-growthcode authored and ecdrsvc committed Sep 6, 2023
1 parent 7fd1d89 commit 13fb9fe
Showing 1 changed file with 45 additions and 0 deletions.
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']
}
});
```

0 comments on commit 13fb9fe

Please sign in to comment.