Skip to content

Commit 76deace

Browse files
Datawrkz Analytics Adapter : initial release (#6225)
* add dev docs for Datawrkz Analytics * docs: fix code block formatting in datawrkz analytics example * docs: fix code block formatting in datawrkz analytics example * docs(analytics): add publisherId and apiKey options for Datawrkz Analytics Adapter * docs(analytics): wrap support email in mailto link to fix no-bare-urls lint error --------- Co-authored-by: Likhith <[email protected]>
1 parent 98e9290 commit 76deace

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

dev-docs/analytics/datawrkz.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
layout: analytics
3+
title: Datawrkz
4+
description: Datawrkz Analytics Adapter
5+
modulecode: datawrkzanalytics
6+
prebid_member: false
7+
tcfeu_supported: false
8+
usp_supported: false
9+
coppa_supported: false
10+
gvl_id: none
11+
enable_download: true
12+
---
13+
14+
#### Registration
15+
16+
Using this adapter requires a **Publisher ID** and an **API Key**, issued by the Datawrkz team.
17+
Please contact [[email protected]](mailto:[email protected]) to create your account and obtain credentials.
18+
19+
#### About
20+
21+
This analytics adapter captures auction and render data from Prebid events and sends it to the Datawrkz API endpoint. The analytics for the collected data can be accessed at [yieldopt.highr.ai](https://yieldopt.highr.ai/).
22+
23+
#### Integration
24+
25+
To incorporate this module into your `prebid.js`, compile the module using the following command:
26+
27+
```sh
28+
gulp build --modules=datawrkzAnalyticsAdapter,<other modules...>
29+
```
30+
31+
#### Page Configuration
32+
33+
```js
34+
pbjs.que.push(function () {
35+
pbjs.enableAnalytics([{
36+
provider: 'datawrkzanalytics',
37+
options: {
38+
publisherId: 'YOUR_PUBLISHER_ID',
39+
apiKey: 'YOUR_API_KEY'
40+
}
41+
}]);
42+
});
43+
```

0 commit comments

Comments
 (0)