Skip to content

Commit 3d5f095

Browse files
authoredMar 6, 2025··
Merge pull request #6660 from segmentio/lizkane222-patch-17
Add Saving Traits to Context Object info to Analytics.js Identity management
2 parents cea43de + a269014 commit 3d5f095

File tree

1 file changed

+11
-0
lines changed
  • src/connections/sources/catalog/libraries/website/javascript

1 file changed

+11
-0
lines changed
 

‎src/connections/sources/catalog/libraries/website/javascript/identity.md

+11
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,17 @@ analytics.track('Clicked Email', {
168168
169169
This appends the `plan_id` trait to this Track event. This does _not_ add the name or email, since those traits were not added to the `context` object. You must do this for every following event you want these traits to appear on, as the `traits` object does not persist between calls.
170170
171+
By default, non-Identify events (like Track or Page) **don't automatically collect user traits** from previous Identify calls. To include traits from an `identify()` event in later events, you'll need to add them manually to the `context.traits` object within the `options` parameter.
172+
173+
Each Analytics.js method has an `options` parameter where you can pass the `context.traits` object, but each method has a specific format. Follow the formats in the [Segment Spec](/docs/connections/spec/) when adding traits, like in these examples:
174+
175+
- [Identify](/docs/connections/spec/identify/) - The [Analytics.js Identify](/docs/connections/sources/catalog/libraries/website/javascript/#identify) method follows this format : `analytics.identify([userId], [traits], [options], [callback])`;
176+
- [Track](/docs/connections/spec/track/) - The [Analytics.js Track](/docs/connections/sources/catalog/libraries/website/javascript/#track) method follows this format : `analytics.track(event, [properties], [options], [callback])`;
177+
- [Page](/docs/connections/spec/page/) - The [Analytics.js Page](/docs/connections/sources/catalog/libraries/website/javascript/#page) method follows this format : `analytics.page([category], [name], [properties], [options], [callback])`;
178+
- [Group](/docs/connections/spec/group/) - The [Analytics.js Group](/docs/connections/sources/catalog/libraries/website/javascript/#group) method follows this format : `analytics.group(groupId, [traits], [options], [callback])`;
179+
180+
Adding traits to events is especially useful if you're using [Actions destinations](/docs/connections/destinations/actions/), since it makes those traits available for mapping in the destination’s configuration.
181+
171182
172183
## Clearing Traits
173184

0 commit comments

Comments
 (0)
Please sign in to comment.