-
Notifications
You must be signed in to change notification settings - Fork 381
HeadsUp AI docs #1609
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
Merged
Merged
HeadsUp AI docs #1609
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
ada94bf
HeadsUp AI docs
36523b5
adding AI
04ec7d6
Update src/connections/destinations/catalog/headsup-ai/index.md
pauljaeinyoo 84390cf
Update src/connections/destinations/catalog/headsup-ai/index.md
pauljaeinyoo a705dfe
Update src/connections/destinations/catalog/headsup-ai/index.md
pauljaeinyoo e5ef723
Merge branch 'master' into headsup-docs
pauljaeinyoo 60cd66a
Merge branch 'master' into headsup-docs
pauljaeinyoo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
--- | ||
title: HeadsUp AI Destination | ||
rewrite: true | ||
--- | ||
|
||
[HeadsUp AI](https://headsup.ai?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) allows customers to build metrics on top of their existing Segment analytics to better understand customer behavior and gauge health scores. | ||
|
||
This destination is maintained by HeadsUp. For any issues with the destination, [contact the HeadsUp AI Support team](mailto:administration@headsup.ai). | ||
|
||
## Getting Started | ||
|
||
{% include content/connection-modes.md %} | ||
|
||
1. From the Destinations catalog page in the Segment App, click **Add Destination**. | ||
2. Search for "HeadsUp AI" in the Destinations Catalog, and select the HeadsUp AI Destination. | ||
3. Choose which Source should send data to the HeadsUp AI destination. | ||
4. Go to the [HeadsUp Onboarding](https://app.headsup.ai/welcome) page, find and copy the "Segment API key". | ||
5. Back in the Segment App, go back to the the HeadsUp AI Destination settings, and enter the "API Key". | ||
|
||
## Identify | ||
|
||
If you aren't familiar with the Segment Spec, take a look at the [Identify method documentation](https://segment.com/docs/connections/spec/identify/) to learn about what it does. An example call would look like: | ||
|
||
```js | ||
analytics.identify('userId123', { | ||
email: 'john.doe@example.com' | ||
}); | ||
``` | ||
Segment sends Identify calls to HeadsUp as an `identify` event. The `email` field is required. Identify calls without an email fail with a `400` code. | ||
|
||
## Track | ||
|
||
If you aren't familiar with the Segment Spec, take a look at the [Track method documentation](https://segment.com/docs/connections/spec/track/) to learn about what it does. An example call would look like: | ||
|
||
```js | ||
analytics.track('Login Button Clicked') | ||
``` | ||
Segment sends Track calls to HeadsUp as a `track` event. Use Track events to perform metric aggregations, such as how many times a user logged into your application in the past 30 days. | ||
|
||
## Page | ||
|
||
If you aren't familiar with the Segment Spec, take a look at the [Page method documentation](https://segment.com/docs/connections/spec/page/) to learn about what it does. An example call would look like: | ||
|
||
```js | ||
analytics.page() | ||
``` | ||
Segment sends Page calls to HeadsUp as a `pageview`. | ||
|
||
## Group | ||
If you aren’t familiar with the Segment Spec, take a look at the [Group method documentation](https://segment.com/docs/connections/spec/group/) to learn about what it does. An example call would look like: | ||
|
||
```js | ||
analytics.group("0e8c78ea9d97a7b8185e8632", { | ||
name: "HeadsUp" | ||
}); | ||
``` | ||
Segment sends Group calls to HeadsUp as a `group` event. Use Group events to aggregate user behavior across organizations. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.