Skip to content

Commit d7c8f34

Browse files
authored
Merge pull request #1 from Inleads/feat/inleads-ai-doc
Add docs for new Inleads destination
2 parents a0d4771 + 34983f2 commit d7c8f34

File tree

1 file changed

+59
-0
lines changed
  • src/connections/destinations/catalog/inleads-ai

1 file changed

+59
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
---
2+
title: Inleads Destination
3+
---
4+
5+
[Inleads.ai](http://Inleads.ai?utm_source=segmentio&utm_medium=docs&utm_campaign=partners){:target="_blank”} is an AI-driven sales intelligence and analytics platform designed to empower startups and enterprises with comprehensive tools for growth.
6+
7+
Using Inleads, you can gain deeper insights into your customer journey and drive smarter decisions with the Inleads.ai and Segment integration. With this integration, seamlessly map Segment events to Inleads.ai events, enabling you to track deals, leads and customer activities across every touchpoint. Dive into real-time sales, product, and revenue insights, powered by advanced analytics and machine learning algorithms. With Inleads.ai and Segment, unlock the full potential of your customer data to fuel your business success.
8+
9+
This destination is maintained by Inleads.ai. For any issues with the destination, [contact the Inleads Support team](mailto:[email protected]).
10+
11+
## Getting Started
12+
13+
1. From the Destinations catalog page in the Segment App, click **Add Destination**.
14+
2. Search for **Inleads** in the Destinations Catalog, and select the **Inleads** destination.
15+
3. Choose which Source should send data to the Inleads destination.
16+
4. Go to the [Inleads dashboard](https://app.inleads.ai/#/settings){:target="_blank"} and find the **API Key** in Settings API Keys tab.
17+
5. Enter the **API Key** in the Inleads destination settings in Segment.
18+
19+
## Supported methods
20+
21+
Inleads supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
22+
23+
### Identify
24+
25+
Send [Identify](/docs/connections/spec/identify) calls to create new user profile or update existing users with new trait values. For example:
26+
27+
```js
28+
analytics.identify("inleadsUser123", {
29+
30+
});
31+
```
32+
33+
Segment sends Identify calls to Inleads as an `identify` event.
34+
35+
### Track
36+
37+
Send [Track](/docs/connections/spec/track) calls to record user behavior in your app. For example:
38+
39+
```js
40+
analytics.track("New lead created");
41+
```
42+
43+
Segment sends Track calls to Inleads as a `track` event.
44+
45+
### Group
46+
47+
Send [Group](/docs/connections/spec/group) calls to associate an individual user to group. For example:
48+
49+
```js
50+
analytics.group("0e8c78ea9d97a7b8185e8632", {
51+
name: "Initech",
52+
industry: "Technology",
53+
employees: 329,
54+
plan: "enterprise",
55+
"total billed": 830
56+
});
57+
```
58+
59+
{% include components/actions-fields.html %}

0 commit comments

Comments
 (0)