Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
3 changes: 2 additions & 1 deletion docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@
"integrations/analytics/google-analytics",
"integrations/analytics/google-tag-manager",
"integrations/analytics/heap",
"integrations/analytics/hightouch",
"integrations/analytics/hotjar",
"integrations/analytics/koala",
"integrations/analytics/logrocket",
Expand Down Expand Up @@ -509,4 +510,4 @@
"publicApiKey": "pk_76a6caa274e800f3ceff0b2bc6b9b9d82ab8"
}
}
}
}
33 changes: 33 additions & 0 deletions integrations/analytics/hightouch.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
title: "Hightouch"

Check warning on line 2 in integrations/analytics/hightouch.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

integrations/analytics/hightouch.mdx#L2

Did you really mean 'Hightouch'?
---

Add the following to your `docs.json` file to send analytics to Hightouch.

Check warning on line 5 in integrations/analytics/hightouch.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

integrations/analytics/hightouch.mdx#L5

Did you really mean 'Hightouch'?

<Info>

Do not include `https://` for the `apiHost`.

</Info>

<CodeGroup>

```json Analytics options in docs.json
"integrations": {
"hightouch": {
"writeKey": "required"
"apiHost": "optional"
}
}
```

```json Example
"integrations": {
"hightouch": {
"writeKey": "9132c81do371p76sr11da0075469b54f77649c9a067dp0303p56q0q64n072336"
"apiHost": "us-east-1.hightouch-events.com" # optional, defaults to `us-east-1.hightouch-events.com`
}
}
```

</CodeGroup>
25 changes: 24 additions & 1 deletion integrations/analytics/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,25 @@ Automatically send data about your documentation engagement to your third party
}
/>

<Card
title="Hightouch"
href="/integrations/analytics/hightouch"
horizontal
icon={
<svg
className="h-6 w-6"
xmlns="http://www.w3.org/2000/svg"
width="97"
height="97"
viewBox="0 0 97 97"
fill="none"
>
<path d="M33 3.75C33 2.7835 33.7835 2 34.75 2H93.25C94.2165 2 95 2.7835 95 3.75V62.25C95 63.2165 94.2165 64 93.25 64H33V3.75Z" fill="#101111"/>
<path d="M33 93.25C33 94.2165 32.2165 95 31.25 95L3.75 95C2.7835 95 2 94.2165 2 93.25L2 65.75C2 64.7835 2.7835 64 3.75 64L33 64L33 93.25Z" fill="#101111"/>
</svg>
}
/>

<Card
title="HotJar"
href="/integrations/analytics/hotjar"
Expand Down Expand Up @@ -513,7 +532,7 @@ fill="#7166F6"
/>
</svg>
}
/>
/>
</CardGroup>

## Enabling analytics
Expand Down Expand Up @@ -543,6 +562,10 @@ The syntax for `docs.json` is below. You only need to include entries for the pl
"gtm": {
"tagId": "required"
},
"hightouch": {
"apiKey": "required",
"apiHost": "optional"
},
"hotjar": {
"hjid": "required",
"hjsv": "required"
Expand Down