Skip to content

Commit e0cfb81

Browse files
authored
Merge pull request #1609 from segmentio/headsup-docs
HeadsUp AI docs
2 parents 5479fb3 + 60cd66a commit e0cfb81

File tree

5 files changed

+115
-4
lines changed

5 files changed

+115
-4
lines changed

src/_data/catalog/destination_categories.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# AUTOGENERATED FROM PLATFORM API. DO NOT EDIT
2-
# destination categories last updated 2021-05-17
2+
# destination categories last updated 2021-05-18
33
items:
44
- display_name: Email Marketing
55
slug: email-marketing

src/_data/catalog/destinations.yml

Lines changed: 55 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# AUTOGENERATED FROM PLATFORM API. DO NOT EDIT
2-
# destination data last updated 2021-05-17
2+
# destination data last updated 2021-05-18
33
items:
44
- display_name: ActiveCampaign
55
slug: activecampaign
@@ -11119,6 +11119,60 @@ items:
1111911119
regexp: ''
1112011120
description: The name of your workspace
1112111121
settings: []
11122+
- display_name: HeadsUp AI
11123+
slug: headsup-ai
11124+
name: catalog/destinations/headsup-ai
11125+
url: connections/destinations/catalog/headsup-ai
11126+
description: Determine User Health Scores
11127+
hidden: false
11128+
status: PUBLIC_BETA
11129+
previous_names:
11130+
- HeadsUp AI
11131+
logo:
11132+
url: >-
11133+
https://public-segment-devcenter-production.s3.amazonaws.com/1c80a592-0ede-451d-9aa8-a017601606ea.svg
11134+
mark:
11135+
url: >-
11136+
https://public-segment-devcenter-production.s3.amazonaws.com/7618c303-890b-42ed-b3fe-c70130fdd629.svg
11137+
categories:
11138+
- Analytics
11139+
- CRM
11140+
- Customer Success
11141+
methods:
11142+
alias: false
11143+
group: true
11144+
identify: true
11145+
page_view: true
11146+
track: true
11147+
components: []
11148+
platforms:
11149+
browser: true
11150+
server: true
11151+
mobile: true
11152+
browserUnbundlingSupported: false
11153+
browserUnbundlingPublic: false
11154+
connection_modes:
11155+
device:
11156+
web: false
11157+
mobile: false
11158+
server: false
11159+
cloud:
11160+
web: false
11161+
mobile: false
11162+
server: false
11163+
summary: No connection mode information available.
11164+
cmode_type: none
11165+
case: '0'
11166+
settings:
11167+
- name: apiKey
11168+
display_name: API Key
11169+
type: STRING
11170+
deprecated: false
11171+
required: true
11172+
string_validators:
11173+
regexp: '^.{8,}$'
11174+
description: You can find your API key within the HeadsUp onboarding flow.
11175+
settings: []
1112211176
- display_name: Heap
1112311177
slug: heap
1112411178
name: catalog/destinations/heap

src/_data/catalog/source_categories.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# AUTOGENERATED FROM PLATFORM API. DO NOT EDIT
2-
# source cateogries last updated 2021-05-17
2+
# source cateogries last updated 2021-05-18
33
items:
44
- display_name: Server
55
slug: server

src/_data/catalog/sources.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# AUTOGENERATED FROM PLATFORM API. DO NOT EDIT
2-
# sources last updated 2021-05-17
2+
# sources last updated 2021-05-18
33
items:
44
- display_name: .NET
55
slug: net
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
title: HeadsUp AI Destination
3+
rewrite: true
4+
---
5+
6+
[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.
7+
8+
This destination is maintained by HeadsUp. For any issues with the destination, [contact the HeadsUp AI Support team](mailto:[email protected]).
9+
10+
## Getting Started
11+
12+
{% include content/connection-modes.md %}
13+
14+
1. From the Destinations catalog page in the Segment App, click **Add Destination**.
15+
2. Search for "HeadsUp AI" in the Destinations Catalog, and select the HeadsUp AI Destination.
16+
3. Choose which Source should send data to the HeadsUp AI destination.
17+
4. Go to the [HeadsUp Onboarding](https://app.headsup.ai/welcome) page, find and copy the "Segment API key".
18+
5. Back in the Segment App, go back to the the HeadsUp AI Destination settings, and enter the "API Key".
19+
20+
## Identify
21+
22+
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:
23+
24+
```js
25+
analytics.identify('userId123', {
26+
27+
});
28+
```
29+
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.
30+
31+
## Track
32+
33+
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:
34+
35+
```js
36+
analytics.track('Login Button Clicked')
37+
```
38+
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.
39+
40+
## Page
41+
42+
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:
43+
44+
```js
45+
analytics.page()
46+
```
47+
Segment sends Page calls to HeadsUp as a `pageview`.
48+
49+
## Group
50+
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:
51+
52+
```js
53+
analytics.group("0e8c78ea9d97a7b8185e8632", {
54+
name: "HeadsUp"
55+
});
56+
```
57+
Segment sends Group calls to HeadsUp as a `group` event. Use Group events to aggregate user behavior across organizations.

0 commit comments

Comments
 (0)