Skip to content
Closed
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@
"integrations/analytics/heap",
"integrations/analytics/hightouch",
"integrations/analytics/hotjar",
"integrations/analytics/koala",
"integrations/analytics/logrocket",
"integrations/analytics/mixpanel",
"integrations/analytics/pirsch",
Expand Down
29 changes: 29 additions & 0 deletions integrations/analytics/koala.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: "Koala"
description: "Track visitor activity and identify accounts with Koala for intent-based sales intelligence."
keywords: ["Koala analytics", "intent data", "account identification", "public API key"]
---

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

<CodeGroup>

```json Analytics options in docs.json
"integrations": {
"koala": {
"publicApiKey": "required"
}
}
```

```json Example
"integrations": {
"koala": {
"publicApiKey": "pk_a1b2c3d4e5"
}
}
```

</CodeGroup>

Replace `pk_a1b2c3d4e5` with your Koala public API key. You can find this in your [Koala settings](https://app.getkoala.com/goto/settings/install).
43 changes: 43 additions & 0 deletions integrations/analytics/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,46 @@
}
/>

<Card
title="Koala"
href="/integrations/analytics/koala"
horizontal
icon={
<svg
className="h-6 w-6"
width="24"
height="24"
viewBox="0 0 512 512"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="256" cy="256" r="256" fill="#7856FF" />
<path
d="M352.5 208c0 53.3-43.2 96.5-96.5 96.5S159.5 261.3 159.5 208 202.7 111.5 256 111.5 352.5 154.7 352.5 208z"
fill="#fff"
/>
<circle cx="224" cy="200" r="20" fill="#7856FF" />
<circle cx="288" cy="200" r="20" fill="#7856FF" />
<path
d="M236 248c0 0 10 16 20 16s20-16 20-16"
stroke="#7856FF"
strokeWidth="8"
strokeLinecap="round"
fill="none"
/>
<ellipse cx="160" cy="180" rx="48" ry="56" fill="#fff" />
<ellipse cx="352" cy="180" rx="48" ry="56" fill="#fff" />
<path
d="M200 340c0 0 24 40 56 40s56-40 56-40"
stroke="#fff"
strokeWidth="16"
strokeLinecap="round"
fill="none"
/>
</svg>
}
/>

<Card
title="LogRocket"
href="/integrations/analytics/logrocket"
Expand Down Expand Up @@ -611,10 +651,13 @@
"hjid": "required",
"hjsv": "required"
},
"koala": {
"publicApiKey": "required"
},
"logrocket": {
"appId": "required"
},
"mixpanel": {

Check warning on line 660 in integrations/analytics/overview.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

integrations/analytics/overview.mdx#L660

Use 'Mixpanel' instead of 'mixpanel'.
"projectToken": "required"
},
"pirsch": {
Expand All @@ -623,7 +666,7 @@
"plausible": {
"domain": "required"
},
"posthog": {

Check warning on line 669 in integrations/analytics/overview.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

integrations/analytics/overview.mdx#L669

Use 'PostHog' instead of 'posthog'.
"apiKey": "required",
"apiHost": "optional"
},
Expand Down
1 change: 1 addition & 0 deletions organize/settings-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@

##### `navigation.global.dropdowns`

Dropdown menus.

Check warning on line 159 in organize/settings-reference.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

organize/settings-reference.mdx#L159

Use 'dropdowns?' instead of 'Dropdown'.

**Type:** array of object—each with: `dropdown` (string, required), `icon` (string), `iconType` (string), `hidden` (boolean), `href` (string uri, required)

Expand Down Expand Up @@ -208,7 +208,7 @@

#### `navigation.dropdowns`

Dropdown menus.

Check warning on line 211 in organize/settings-reference.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

organize/settings-reference.mdx#L211

Use 'dropdowns?' instead of 'Dropdown'.

**Type:** array of object—see `navigation.global.dropdowns` for shape.

Expand Down Expand Up @@ -905,6 +905,7 @@
| `integrations.hotjar.hjid` | string | Yes | Hotjar site ID. |
| `integrations.hotjar.hjsv` | string | Yes | Hotjar script version. |
| `integrations.intercom.appId` | string (min 6) | Yes | Intercom app ID. |
| `integrations.koala.publicApiKey` | string | Yes | Koala public API key. |
| `integrations.logrocket.appId` | string | Yes | LogRocket app ID. |
| `integrations.mixpanel.projectToken` | string | Yes | Mixpanel project token. |
| `integrations.pirsch.id` | string | Yes | Pirsch site ID. |
Expand Down
Loading