Skip to content

Commit 519e1f8

Browse files
authored
Merge pull request #6428 from Inleads/develop
Add docs for new Inleads destination
2 parents f7e212c + 0d2992c commit 519e1f8

File tree

1 file changed

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

1 file changed

+61
-0
lines changed
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
title: Inleads AI Destination
3+
id: 6627b0208bbe1699ca06eef8
4+
beta: true
5+
---
6+
7+
[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.
8+
9+
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.
10+
11+
This destination is maintained by [Inleads.ai](http://Inleads.ai?utm_source=segmentio&utm_medium=docs&utm_campaign=partners){:target="_blank”}. For any issues with the destination, [contact the Inleads Support team](mailto:info@inleads.ai).
12+
13+
## Getting Started
14+
15+
1. From the Destinations catalog page in the Segment App, click **Add Destination**.
16+
2. Search for **Inleads** in the Destinations Catalog, and select the **Inleads** destination.
17+
3. Choose which Source should send data to the Inleads destination.
18+
4. Go to the [Inleads dashboard](https://app.inleads.ai/#/settings){:target="_blank"} and find the **API Key** in Settings API Keys tab.
19+
5. Enter the **API Key** in the Inleads destination settings in Segment.
20+
21+
## Supported methods
22+
23+
Inleads supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
24+
25+
### Identify
26+
27+
Send [Identify](/docs/connections/spec/identify) calls to create new user profile or update existing users with new trait values. For example:
28+
29+
```js
30+
analytics.identify("inleadsUser123", {
31+
email: "test@example.com",
32+
});
33+
```
34+
35+
Segment sends Identify calls to Inleads as an `identify` event.
36+
37+
### Track
38+
39+
Send [Track](/docs/connections/spec/track) calls to record user behavior in your app. For example:
40+
41+
```js
42+
analytics.track("New lead created");
43+
```
44+
45+
Segment sends Track calls to Inleads as a `track` event.
46+
47+
### Group
48+
49+
Send [Group](/docs/connections/spec/group) calls to associate an individual user to group. For example:
50+
51+
```js
52+
analytics.group("0e8c78ea9d97a7b8185e8632", {
53+
name: "Initech",
54+
industry: "Technology",
55+
employees: 329,
56+
plan: "enterprise",
57+
"total billed": 830
58+
});
59+
```
60+
61+
{% include components/actions-fields.html %}

0 commit comments

Comments
 (0)