You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/connections/sources/catalog/cloud-apps/listrak/index.md
+17-19Lines changed: 17 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,17 +31,15 @@ This source is maintained by Listrak. For any issues with the source, [contact t
31
31
11. Paste the Write key you copied from Segment and click **Save**.
32
32
12. Add at least one email list that you want to sync with Segment and click **Save**.
33
33
34
-
## Components
34
+
## Stream
35
35
36
-
**Stream**
36
+
Listrak uses our stream Source component to send Segment event data. It uses the server-side `identify` and `track` methods to send data to Segment. These events are then available in any destination that accepts server-side events, and available in a schema in your data warehouse, so you can query using SQL.
37
37
38
-
Listrak uses our stream Source component to send Segment event data. It uses a server-side `identify` method to send data to Segment. These events are then available in any destination that accepts server-side events, and available in a schema in your data warehouse, so you can query using SQL.
38
+
Listrak always sets the `anonymousId` and the `email` trait to the email address of the contact.
39
39
40
-
Listrak always sets the `anonymousId` and the `email` trait to the email address of the contact.
40
+
If a profile field was entered when the email list was added to the integration and the email address has a value for that profile field, the `userId` will be set to that value when sending `identify` events. Otherwise, Listrak will not set the `userId`. The `userId` will not be set for any `track` events.
41
41
42
-
If a profile field was entered when the email list was added to the integration and the email address has a value for that profile field, the `userId` will be set to that value. Otherwise, Listrak will not set the `userId`.
43
-
44
-
Listrak maintains a trait for each email list you add to the integration. The trait is named `Listrak_list_{listId}`, where `{listId}` is the ID of the list (eg. `Listrak_list_12345`). The trait will be set to true if the email address is subscribed to the list. The trait will be removed if the email address is not subscribed to the list. This trait can be used to create Engage audiences that only contain profiles that are subscribed to a Listrak list.
42
+
Listrak maintains a trait for each email list you add to the integration using `identify` events. The trait is named `listrak_list_{listId}`, where `{listId}` is the ID of the list (eg. `listrak_list_12345`). The trait will be set to true if the email address is subscribed to the list. The trait will be removed if the email address is not subscribed to the list. This trait can be used to create Engage audiences that only contain profiles that are subscribed to a Listrak list.
45
43
46
44
## Events
47
45
@@ -81,51 +79,51 @@ The table below list the properties included in the events listed above.
81
79
</tr>
82
80
<tr>
83
81
<td>`email_id`</td>
84
-
<td>An ID used to identify the email.</td>
82
+
<td>An ID used to identify the email</td>
85
83
</tr>
86
84
<tr>
87
85
<td>`email_subject`</td>
88
-
<td>The email’s subject line.</td>
86
+
<td>The email’s subject line</td>
89
87
</tr>
90
88
<tr>
91
89
<td>`campaign_name`</td>
92
-
<td>A name used to identify a campaign.</td>
90
+
<td>A name used to identify a Listrak campaign</td>
93
91
</tr>
94
92
<tr>
95
93
<td>`link_id`</td>
96
-
<td>An ID used to identify a link.</td>
94
+
<td>An ID used to identify a link</td>
97
95
</tr>
98
96
<tr>
99
97
<td>`link_url`</td>
100
-
<td>The URL the link points to.</td>
98
+
<td>The URL the link points to</td>
101
99
</tr>
102
100
<tr>
103
101
<td>`google_analytics_campaign_name`</td>
104
-
<td>A name used to identify a Google Analytics campaign.</td>
102
+
<td>A name used to identify a Google Analytics campaign</td>
105
103
</tr>
106
104
<tr>
107
105
<td>`list_id`</td>
108
-
<td>An ID used to identify a list.</td>
106
+
<td>An ID used to identify a list</td>
109
107
</tr>
110
108
<tr>
111
109
<td>`list_name`</td>
112
-
<td>A name used to identify a list.</td>
110
+
<td>A name used to identify a list</td>
113
111
</tr>
114
112
<tr>
115
113
<td>`order_total`</td>
116
-
<td>The order total associated with the conversion.</td>
114
+
<td>The order total associated with the conversion</td>
117
115
</tr>
118
116
<tr>
119
117
<td>`context.ip`</td>
120
-
<td>The opening computer’s public IP address.</td>
0 commit comments