Evergage Destination
Evergage offers a cloud-based platform that empowers digital marketers to increase engagement and conversions through real-time 1:1 personalization. The analytics.js
Evergage Destination is open-source. You can browse the code on GitHub.
The Evergage destination has been deprecated
The Evergage Destination was deprecated on January 8, 2021 and is no longer supported or maintained. It is no longer available in the Segment catalog, but remains available to existing users.
Identify
If you’re not familiar with the Segment Specs, take a look to understand what the Identify method does. An example call would look like:
analytics.identify('userId123', {
name: 'John Doe',
email: 'john.doe@example.com'
});
A userId
is required on all identify
calls sent to . When you call identify
Segment will call both setUser
and setUserField
in the Evergage library to insert both the userId
and corresponding user traits into .
Group
If you’re not familiar with the Segment Specs, take a look to understand what the Group method does. An example call would look like:
analytics.group('companyId123', {
name: 'Segment'
});
A groupId
is required on all group
calls sent to . When you call group
Segment will call both setCompany
and setAccountField
in the Evergage library to insert both the groupId
and corresponding group traits into .
Track
If you’re not familiar with the Segment Specs, take a look to understand what the Track method does. An example call would look like:
analytics.track('Email Opened', {
name: 'John Doe',
email: 'john.doe@example.com'
});
When you call track
Segment triggers trackAction
in Evergage and will pass any properties with the event.
This page was last modified: 21 Jan 2022
Need support?
Questions? Problems? Need more info? Contact Segment Support for assistance!