Skip to content

Update index.md #4514

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

Merged
merged 2 commits into from
Apr 6, 2023
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
4 changes: 2 additions & 2 deletions src/connections/destinations/catalog/heap/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ If you're not familiar with the Segment Specs, take a look to understand what th
analytics.identify('userId123');
```

When you call `identify` we call [Heap's identify method](https://heapanalytics.com/docs/custom-api#identify) with the `userId` and `traits` you provide.
When you call `identify`, Segment calls [Heap's identify method](https://developers.heap.io/docs/using-identify){:target="_blank"} with the `userId` and `traits` you provide.

If one of your `traits` is of the date property type, we will convert it into an ISO string.

Expand All @@ -34,7 +34,7 @@ If you're not familiar with the Segment Specs, take a look to understand what th
analytics.track('Clicked Button');
```

When you call `track` from `analytics.js`, we call Heap's [track function](https://docs.heapanalytics.com/reference#track) with exactly the same parameters. Calling `track` from one of our mobile SDKs or server-side sources records a [Heap Custom Event](https://docs.heapanalytics.com/reference#track-1) with the same event name and properties.
When you call `track` from `analytics.js`, Segment calls Heap's [track function](https://developers.heap.io/reference/track){:target="_blank"} with the same parameters. Calling `track` from one of Segment's mobile SDKs or server-side sources records a [Heap Custom Event](https://docs.heapanalytics.com/reference#track-1){:target="_blank"} with the same event name and properties.

If one of your `properties` is of the date property type, we will convert it into an ISO string.

Expand Down