Skip to content

Commit a9bbae7

Browse files
committed
update verbiage [netlify-ignore]
1 parent 754baec commit a9bbae7

File tree

1 file changed

+10
-7
lines changed
  • src/connections/destinations/catalog/crisp

1 file changed

+10
-7
lines changed

src/connections/destinations/catalog/crisp/index.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,13 @@ This destination is maintained by Crisp. For any issues with the destination, [c
1515
3. The Segment App opens in a new window. Log in to authenticate the connection from Crisp.
1616
4. Select the Workspace and Source to connect with Crisp.
1717

18-
## Identify
18+
### Supported methods
1919

20-
If you aren't familiar with the Segment Spec, take a look at the [Identify method documentation](https://segment.com/docs/connections/spec/identify/) to learn about what it does. An example call would look like:
20+
Crisp supports the following methods, as specified in the [Segment Spec](/docs/connections/spec/).
21+
22+
### Identify
23+
24+
Send [Identify](/docs/connections/spec/identify/) calls to create or update a User profile. The `email` trait is required to create new Users. For example:
2125

2226
```js
2327
analytics.identify('userId123', {
@@ -27,11 +31,10 @@ analytics.identify('userId123', {
2731
avatar: 'https://pbs.twimg.com/profile_images/834424630630817795/TfyS4uXb_400x400.jpg'
2832
});
2933
```
30-
Send Identify calls to create or update a User profile. The `email` trait is required to create new Users.
3134

32-
## Track
35+
### Track
3336

34-
If you aren't familiar with the Segment Spec, take a look at the [Track method documentation](https://segment.com/docs/connections/spec/track/) to learn about what it does. An example call would look like:
37+
Crisp adds [Track](/docs/connections/spec/track/) events to the User's profile events stream.
3538

3639
```js
3740
analytics.track('Completed Purchase', {
@@ -41,6 +44,6 @@ analytics.track('Completed Purchase', {
4144
});
4245
```
4346
> warning ""
44-
> Be sure you send an Identify call for any user who will trigger Track calls. If Crisp receives a Track call for an unknown `userId`, the call is dropped.
47+
> Send an Identify call for any user who triggers Track calls. If Crisp receives a Track call for an unknown `userId`, the call is dropped.
48+
4549

46-
Crisp adds Track events to the User's profile events stream.

0 commit comments

Comments
 (0)