Skip to content

Commit 03c4cc5

Browse files
Apply suggestions from code review [netlify-build]
Co-authored-by: forstisabella <[email protected]>
1 parent 7c7d6d7 commit 03c4cc5

File tree

1 file changed

+29
-42
lines changed
  • src/connections/destinations/catalog/accoil-analytics

1 file changed

+29
-42
lines changed

src/connections/destinations/catalog/accoil-analytics/index.md

Lines changed: 29 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -8,59 +8,51 @@ private: true
88

99
{% include content/plan-grid.md name="actions" %}
1010

11-
<!-- Include a brief description of the destination here, along with a link to your website. -->
1211

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.
1413

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”}.
1615

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. -->
1816

19-
## Benefits of Integrating with Accoil
17+
## Benefits of integrating with Accoil
2018

2119
- **Comprehensive Analytics**: Gain detailed insights into your product's performance across features, customer segments, and stages of the user journey.
2220
- **Enhanced Collaboration**: Create account- and user-level audiences that trigger timely actions across tools like Slack, Intercom, HubSpot, and more.
2321
- **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.
2523
- **User-Friendly Interface**: Designed to be intuitive, Accoil allows any team to build and use product engagement profiles without needing advanced analytical skills.
2624

27-
## How It Works
25+
## How it works
2826

2927
Accoil is most effective when used with Segment. Here’s how it functions:
3028

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.
3432

3533
## Getting Started
3634

3735
To start using the Accoil destination:
3836

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.
4442

45-
<!-- The line below renders a table of connection settings (if applicable), Pre-built Mappings, and available actions. -->
4643

4744
{% include components/actions-fields.html %}
4845

49-
<!--
50-
Additional Context
5146

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
5648

5749
Accoil supports the following Segment methods, which map directly to Accoil’s API:
5850

59-
**1. Identify**
51+
### Identify
6052

61-
**Purpose**: Recognizes individual users and their attributes.
53+
Identify calls recognize individual users and their attributes.
6254

63-
**Example Call**:
55+
Example Call:
6456
```javascript
6557
analytics.identify('userId123', {
6658
@@ -69,45 +61,40 @@ Accoil supports the following Segment methods, which map directly to Accoil’s
6961
});
7062
```
7163

72-
**2. Group**
64+
### Group
7365

74-
**Purpose**: Links users to accounts and records account-level attributes.
66+
Group calls link users to accounts and records account-level attributes.
7567

76-
**Example Call**:
77-
```javascript
68+
Example Call:
69+
````javascript
7870
analytics.group('accountId123', {
7971
name: 'Example Company',
8072
createdAt: '2021-03-15T09:00:00Z', // ISO 8601 or Unix timestamp format
8173
mrr: 3000,
8274
status: 'active'
8375
});
84-
```
8576

86-
**3. Track**
77+
### Track
8778

88-
**Purpose**: Records specific user actions, such as "Login" or "Purchase."
79+
Track calls record specific user actions, like "Login" or "Purchase".
8980

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`.
9182

92-
**Example Call**:
83+
Example Call:
9384
```javascript
9485
analytics.track('Purchase Completed', {
9586
item: 'Book',
9687
price: 25.00
9788
});
98-
```
9989
100-
**4. Page and Screen**
90+
### Page and Screen
10191
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.
10393
104-
**Example Calls**:
94+
Example Calls:
10595
```javascript
10696
analytics.page('Home Page');
10797
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.
11198

11299
## Key Notes
113100

@@ -116,4 +103,4 @@ Accoil supports the following Segment methods, which map directly to Accoil’s
116103
- **Event Aggregation**: Accoil simplifies event tracking by aggregating daily event counts.
117104
- **Page and Screen Calls**: These calls are automatically converted into Track events for easier monitoring of user navigation.
118105

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 [contact the Accoil support team](https://help.accoil.com){:target="_blank”}.

0 commit comments

Comments
 (0)