RudderStack lets you send your event data to Engage via the device mode using the native web SDK.

Find the open source JavaScript SDK code for this destination in the GitHub repository.

Identify

The identify call lets you identify a visiting user and associate them to their actions. It also lets you record the traits about them like their name, email address, etc.

RudderStack sends the attributes to Engage as is, using their identify() API.

A sample identify call is as shown:

rudderanalytics.identify("1hKOmRA4el9Z", {
"email": "alex@example.com"
})

The following table lists the RudderStack event properties and their mappings with the Engage properties/attributes:

RudderStack propertyEngage propertyData type
externalId.engageId, userId
(Required)
idString
context.traits
(Optional)
payloadObject

Track

The track call lets you capture user events along with the properties associated with them.

RudderStack sends the event properties to Engage as is, using their track() API.

A sample track call is as shown:

rudderanalytics.track(
"Product Added", {
product_id: "12345",
product_name: "Pink flowers",
product_url: "http://www.yourdomain.com/products/pink-flowers",
})

The following table lists the RudderStack event properties and their mappings with the Engage properties/attributes:

RudderStack propertyEngage propertyData type
externalId.engageId, userId
(Required)
idString
event
(Required)
eventString
propertes
(Optional)
propertiesObject

Page

The page call lets you record your website's page views with any additional relevant information about the viewed page.

RudderStack sends the page-related information to Engage as is, using their track() API.

A sample page call is as shown:

rudderanalytics.page(
"Cart",
"Cart Viewed", {
title: "new blank page",
url: "/pages/new"
}
);

The following table lists the RudderStack event properties and their mappings with the Engage properties/attributes:

RudderStack propertyEngage propertyData type
externalId.engageId, userId
(Required)
idString
Visited {Category} {Name} Page
(Optional)
eventString
propertes
(Optional)
propertiesObject

Contact us

For more information on the topics covered on this page, email us or start a conversation in our Slack community.

On this page