Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Accoil updates #7122

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Accoil is most effective when used with Segment. Here’s how it functions:

To start using the Accoil destination:

1. In your Segment workspace, navigate to the Catalog page and search for "Accoil Analytics".
1. In your Segment workspace, navigate to the [Catalog page](https://app.segment.com/goto-my-workspace/destinations/catalog/){:target="_blank"} and search for "Accoil Analytics".
2. Select Accoil Analytics from the results and click **Add Destination**.
3. Choose the Segment source you want to connect to Accoil.
4. Navigate to your Accoil dashboard and find your API Key under **General Account Settings**. Copy this API Key.
Expand Down Expand Up @@ -65,13 +65,14 @@ Example Call:
Group calls link users to accounts and records account-level attributes.

Example Call:
````javascript
```javascript
analytics.group('accountId123', {
name: 'Example Company',
createdAt: '2021-03-15T09:00:00Z', // ISO 8601 or Unix timestamp format
mrr: 3000,
status: 'active'
});
```

### Track

Expand All @@ -85,6 +86,7 @@ Example Call:
item: 'Book',
price: 25.00
});
```

### Page and Screen

Expand All @@ -94,6 +96,7 @@ Example Calls:
```javascript
analytics.page('Home Page');
analytics.screen('Dashboard');
```

## Key Notes

Expand Down
Loading