You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/connections/destinations/catalog/accoil-analytics/index.md
+29-42Lines changed: 29 additions & 42 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,59 +8,51 @@ private: true
8
8
9
9
{% include content/plan-grid.md name="actions" %}
10
10
11
-
<!-- Include a brief description of the destination here, along with a link to your website. -->
12
11
13
-
[Accoil](https://www.accoil.com) is a product analytics platform built specifically for B2B go-to-market (GTM) teams, including product, sales, marketing, customer success, and support. It enables you to track feature adoption, monitor user journeys, and enhance activation and conversion rates. By sending your product event data to Accoil via Segment, you unlock actionable insights that drive informed decisions across your organization.
12
+
[Accoil](https://www.accoil.com){:target="_blank”} is a product analytics platform built specifically for B2B go-to-market (GTM) teams, like product, sales, marketing, customer success, and support. It enables you to track feature adoption, monitor user journeys, and enhance activation and conversion rates. By sending your product event data to Accoil using Segment, you unlock actionable insights that drive informed decisions across your organization.
14
13
15
-
Any questions or for help, please [contact us](https://help.accoil.com).
14
+
For any questions or help with Accoil, [contact the Accoil support team](https://help.accoil.com){:target="_blank”}.
16
15
17
-
<!-- In the section below, explain the value of this actions-based destination. If you don't have a classic version of the destination, remove this section. -->
18
16
19
-
## Benefits of Integrating with Accoil
17
+
## Benefits of integrating with Accoil
20
18
21
19
-**Comprehensive Analytics**: Gain detailed insights into your product's performance across features, customer segments, and stages of the user journey.
22
20
-**Enhanced Collaboration**: Create account- and user-level audiences that trigger timely actions across tools like Slack, Intercom, HubSpot, and more.
23
21
-**Actionable Insights**: Teams from sales to customer success can leverage Accoil’s data to make informed decisions, improve engagement, and uncover growth opportunities.
24
-
-**Seamless Integration**: Accoil integrates effortlessly with popular tools such as HubSpot, Intercom, Slack, and Segment itself, making it easy to utilize your product data within your existing workflows.
22
+
-**Seamless Integration**: Accoil integrates effortlessly with popular tools like HubSpot, Intercom, Slack, and Segment itself, making it easy to utilize your product data within your existing workflows.
25
23
-**User-Friendly Interface**: Designed to be intuitive, Accoil allows any team to build and use product engagement profiles without needing advanced analytical skills.
26
24
27
-
## How It Works
25
+
## How it works
28
26
29
27
Accoil is most effective when used with Segment. Here’s how it functions:
30
28
31
-
1.**Send Event Data**: Use Segment to funnel your product event data into Accoil. Focus on the events that are most significant to your product and users.
32
-
2.**Build Engagement Profiles**: Teams can easily create and manage product engagement profiles, helping monitor feature adoption, user engagement, and buyer journey stages.
33
-
3.**Connect to Your Tools**: Once your profiles are set up, Accoil connects to your GTM tools—like Slack, Intercom, HubSpot, and more. With detailed account and user insights, teams can take meaningful actions, such as alerting sales about accounts that have reached key milestones or notifying customer success about potential churn risks.
29
+
1.**Send event data**: Use Segment to funnel your product event data into Accoil. Focus on the events that are most significant to your product and users.
30
+
2.**Build engagement profiles**: Teams can easily create and manage product engagement profiles, helping monitor feature adoption, user engagement, and buyer journey stages.
31
+
3.**Connect to your tools**: Once your profiles are set up, Accoil connects to your GTM tools—like Slack, Intercom, HubSpot, and more. With detailed account and user insights, teams can take meaningful actions, such as alerting sales about accounts that have reached key milestones or notifying customer success about potential churn risks.
34
32
35
33
## Getting Started
36
34
37
35
To start using the Accoil destination:
38
36
39
-
1.**Access the Destination Catalog**: In your Segment workspace, navigate to the Catalog page and search for "Accoil."
40
-
2.**Add the Destination**: Select Accoil from the results and click "Add Destination."
41
-
3.**Connect a Source**: Choose the Segment source you want to connect to Accoil.
42
-
4.**API Key Setup**: In your Accoil dashboard, find your API Key under **General Account Settings**. Copy this API Key.
43
-
5.**Configure in Segment**: Paste the API Key into the Accoil destination settings within Segment, then click "Connect" to complete the integration.
37
+
1. In your Segment workspace, navigate to the Catalog page and search for "Accoil."
38
+
2. Select Accoil from the results and click **Add Destination**
39
+
3. Choose the Segment source you want to connect to Accoil.
40
+
4.Navigate to your Accoil dashboard and find your API Key under **General Account Settings**. Copy this API Key.
41
+
5. Paste the API Key into the Accoil destination settings within Segment, then click "Connect" to complete the integration.
44
42
45
-
<!-- The line below renders a table of connection settings (if applicable), Pre-built Mappings, and available actions. -->
46
43
47
44
{% include components/actions-fields.html %}
48
45
49
-
<!--
50
-
Additional Context
51
46
52
-
Include additional information that you think will be useful to the user here. For information that is specific to an individual mapping, please add that as a comment so that the Segment docs team can include it in the auto-generated content for that mapping.
53
-
-->
54
-
55
-
## Supported Methods
47
+
## Supported methods
56
48
57
49
Accoil supports the following Segment methods, which map directly to Accoil’s API:
58
50
59
-
**1. Identify**
51
+
###Identify
60
52
61
-
**Purpose**: Recognizes individual users and their attributes.
53
+
Identify calls recognize individual users and their attributes.
@@ -69,45 +61,40 @@ Accoil supports the following Segment methods, which map directly to Accoil’s
69
61
});
70
62
```
71
63
72
-
**2. Group**
64
+
###Group
73
65
74
-
**Purpose**: Links users to accounts and records account-level attributes.
66
+
Group calls link users to accounts and records account-level attributes.
75
67
76
-
**Example Call**:
77
-
```javascript
68
+
Example Call:
69
+
````javascript
78
70
analytics.group('accountId123', {
79
71
name:'Example Company',
80
72
createdAt:'2021-03-15T09:00:00Z', // ISO 8601 or Unix timestamp format
81
73
mrr:3000,
82
74
status:'active'
83
75
});
84
-
```
85
76
86
-
**3. Track**
77
+
### Track
87
78
88
-
**Purpose**: Records specific user actions, such as "Login" or "Purchase."
79
+
Track calls record specific user actions, like "Login" or "Purchase".
89
80
90
-
**Recommendation:**Use the Noun_Verb format to name your events, e.g., `Report Created`,`Purchase Completed`.
81
+
Use the "Noun_Verb" format to name your events, for example, `Report Created` or`Purchase Completed`.
91
82
92
-
**Example Call**:
83
+
Example Call:
93
84
```javascript
94
85
analytics.track('Purchase Completed', {
95
86
item: 'Book',
96
87
price: 25.00
97
88
});
98
-
```
99
89
100
-
**4. Page and Screen**
90
+
### Page and Screen
101
91
102
-
**Purpose**: Converts navigation calls into Track events to monitor user interactions within your product.
92
+
Page and Screen calls convert navigation calls into Track events to monitor user interactions within your product.
103
93
104
-
**Example Calls**:
94
+
Example Calls:
105
95
```javascript
106
96
analytics.page('Home Page');
107
97
analytics.screen('Dashboard');
108
-
```
109
-
110
-
**In Accoil**: These calls are transformed into events such as `Page Viewed Home Page` and `Screen Viewed Dashboard`, with the page or screen name as the event name.
111
98
112
99
## Key Notes
113
100
@@ -116,4 +103,4 @@ Accoil supports the following Segment methods, which map directly to Accoil’s
-**Page and Screen Calls**: These calls are automatically converted into Track events for easier monitoring of user navigation.
118
105
119
-
This integration empowers your team to make data-driven decisions, improving your product and customer experiences. For further assistance, please contact the Accoil Support team.
106
+
This integration empowers your team to make data-driven decisions, improving your product and customer experiences. For further assistance, please [contacttheAccoilsupportteam](https://help.accoil.com){:target="_blank”}.
0 commit comments