Skip to content

Commit faf79b8

Browse files
committed
Astrolabe Direct Destination Documentation
1 parent f4b58c1 commit faf79b8

File tree

1 file changed

+60
-0
lines changed
  • src/connections/destinations/catalog/astrolabe

1 file changed

+60
-0
lines changed
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
title: Astrolabe Destination
3+
---
4+
5+
[Astrolabe](https://astrolabe.so/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a Revenue Operations Platform built for go-to-market teams to generate pipelines, prioritize, close, and grow accounts. It's a no-code AI-based platform that empowers teams to easily access data, build advanced predictive machine learning models, create efficient workflows, and drive better results without technical expertise.
6+
7+
This destination is maintained by Astrolabe. For any issues with the destination, [contact the Astrolabe Support team](mailto:[email protected]).
8+
9+
## Getting Started
10+
11+
{% include content/connection-modes.md %}
12+
13+
1. Login to your [Astrolabe workspace](https://console.astrolabe.so/login).
14+
2. Go to the [Connectors page](https://console.astrolabe.so/connectors) and click **Add Connector**.
15+
3. Select the Segment.com Connector and sign in to your Segment account to grant Astrolabe access.
16+
17+
## Supported methods
18+
19+
Astrolabe supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
20+
21+
### Identify
22+
23+
If you aren't familiar with the Segment Spec, take a look at the [Identify method documentation](/docs/connections/spec/identify/) to learn about what it does. An example call would look like:
24+
25+
```js
26+
analytics.identify("userId123", {
27+
28+
});
29+
```
30+
31+
Segment sends Identify calls to Astrolabe as an `identify` event. When you identify a new user, Astrolabe creates a new User record. If the User already exists, Astrolabe updates the User's properties.
32+
33+
### Group
34+
35+
If you aren't familiar with the Segment Spec, take a look at the [Group method documentation](/docs/connections/spec/group/) to learn about what it does. An example call would look like:
36+
37+
```js
38+
analytics.group("0e8c78ea9d97a7b8185e8632", {
39+
name: "Initech",
40+
industry: "Technology",
41+
employees: 329,
42+
plan: "enterprise",
43+
"total billed": 830,
44+
});
45+
```
46+
47+
Segment sends Group calls to Astrolabe as an `group` event. A `group` event can create an Account, If the Account already exists, Astrolabe updates the Account's properties. A `group` event can also associate a User to an Account within Astrolabe.
48+
49+
### Track
50+
51+
If you aren't familiar with the Segment Spec, take a look at the [Track method documentation](/docs/connections/spec/track/) to learn about what it does. An example call would look like:
52+
53+
```js
54+
analytics.track("User Registered", {
55+
plan: "Pro Annual",
56+
accountType: "Facebook",
57+
});
58+
```
59+
60+
Segment sends Track calls to Astrolabe as a `track` event.

0 commit comments

Comments
 (0)