Skip to content

Commit 9d6f310

Browse files
committed
Merge branch 'develop' into issue-4873
2 parents d5930f9 + 0cdd763 commit 9d6f310

File tree

8 files changed

+159
-9
lines changed

8 files changed

+159
-9
lines changed

src/connections/destinations/catalog/canny-functions/index.md renamed to src/connections/destinations/catalog/actions-canny/index.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
title: Canny (Actions) Destination
33
id: 6489bbade6fe3eb57c13bd6a
44
beta: true
5-
hidden: true
6-
private: true
75
---
86

97
{% include content/plan-grid.md name="actions" %}

src/connections/destinations/catalog/actions-insider-audiences/index.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
title: Insider Audiences (Actions)
33
id: 643698ffee21b544f6aa756a
44
beta: true
5-
hidden: true
6-
private: true
75
hide-boilerplate: true
86
hide-dossier: true
97
---
@@ -14,8 +12,6 @@ hide-dossier: true
1412

1513
This destination is maintained by Insider. For any issues with the destination, contact the [Insider Support team.](mailto:[email protected]){:target="_blank"}
1614

17-
{% include content/ajs-upgrade.md %}
18-
1915
## Getting started
2016

2117
> info "Prerequisites"

src/connections/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ You can then sort or filter each column to just the values you care about, by cl
5454

5555
Segment disables sources that don't have enabled destinations after 14 days, and emails you before disabling any sources. Disabling these sources helps maintain a clean workspace.
5656

57-
We do understand there maybe cases to keep a source active, if you'd like to add your source(s) to an exception list, you can do so by filling out this (airtable form)[https://airtable.com/shr7V9LFDZh31cYWW].
57+
Segment understands there maybe cases to keep a source active. If you'd like to add your source(s) to an exception list, you can do so by filling out this [Airtable form](https://airtable.com/shr7V9LFDZh31cYWW){:target="_blank"}.
5858

5959

6060

src/connections/reverse-etl/index.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ To create a mapping:
109109
5. Select a test record to preview the fields that you can map to your destination in the **Add test record** field.
110110
6. Define how to map the record columns from your model to your destination in the **Select Mappings** section.
111111
* You map the fields that come from your source, to fields that the destination expects to find. Fields on the destination side depend on the type of action selected.
112+
* If you're setting up a destination action, depending on the destination, some mapping fields may require data to be in the form of an object or array. See the [supported objects and arrays for mapping](#supported-object-and-arrays).
112113
7. Click **Create Mapping**.
113114
8. Select the destination you’d like to enable on the **My Destinations** page under **Reverse ETL > Destinations**.
114115
9. Turn the toggle on for the **Mapping Status**. Events that match the trigger condition in the mapping will be sent to the destination.
@@ -133,6 +134,8 @@ To check the status of your extractions:
133134
* The load results - how many successful records were synced as well as how many records were updated, deleted, or are new.
134135
5. If your sync failed, click the failed reason to get more details on the error and view sample payloads to help troubleshoot the issue.
135136

137+
#### Replays
138+
You can choose to replay syncs. To replay a specific sync, contact [[email protected]](mailto:[email protected]). Keep in mind that triggering a replay resyncs all records for a given sync.
136139

137140
### Edit your model
138141

@@ -166,6 +169,71 @@ The Segment Connections destination enables you to mold data extracted from your
166169
> warning ""
167170
> The Segment Connections destination sends data to Segment’s Tracking API, which has cost implications. New users count as new MTUs and each call counts as an API call. For information on how Segment calculates MTUs and API calls, please see [MTUs, Throughput and Billing](/docs/guides/usage-and-billing/mtus-and-throughput/).
168171
172+
## Supported object and arrays
173+
174+
When you set up destination actions in Reverse ETL, depending on the destination, some [mapping fields](#step-4-create-mappings) may require data to be in the form of an [object](#object-mapping) or [array](#array-mapping).
175+
176+
### Object mapping
177+
You can send data to a mapping field that requires object data. An example of object mapping is an `Order completed` model with a `Products` column that’s in object format.
178+
179+
Example:
180+
181+
{
182+
"product": {
183+
"id": 0001,
184+
"color": "pink",
185+
"name": "tshirt",
186+
"revenue": 20,
187+
"inventory": 500
188+
}
189+
}
190+
191+
To send data to a mapping field that requires object data, you can choose between these two options:
192+
193+
Option | Details
194+
------ | --------
195+
Customize object | This enables you to manually set up the mapping fields with any data from the model. If the model contains some object data, you can select properties within the object to set up the mappings as well.
196+
Select object | This enables you to send all nested properties within an object. The model needs to provide data in the format of the object.
197+
198+
> success ""
199+
> Certain object mapping fields have a fixed list of properties they can accept. If the names of the nested properties in your object don't match with the destination properties, the data won't send. Segment recommends you to use **Customize Object** to ensure your mapping is successful.
200+
201+
202+
### Array mapping
203+
To send data to a mapping field that requires array data, the model must provide data in the format of an array of objects. An example is an `Order completed` model with a `Product purchased` column that’s in an array format.
204+
205+
Example:
206+
207+
208+
[
209+
{
210+
"currency": "USD",
211+
"price": 40,
212+
"productName": "jacket",
213+
"purchaseTime": "2021-12-17 23:43:47.102",
214+
"quantity": 1
215+
},
216+
{
217+
"currency": "USD",
218+
"price": 5,
219+
"productName": "socks",
220+
"quantity": 2
221+
}
222+
]
223+
224+
225+
To send data to a mapping field that requires array data, you can choose between these two options:
226+
227+
Option | Details
228+
------ | --------
229+
Customize array | This enables you to select the specific nested properties to send to the destination.
230+
Select array | This enables you to send all nested properties within the array.
231+
232+
> success ""
233+
> Certain array mapping fields have a fixed list of properties they can accept. If the names of the nested properties in your array don't match the destination properties, the data won't send. Segment recommends you to use the **Customize array** option to ensure your mapping is successful.
234+
235+
Objects in an array don't need to have the same properties. If a user selects a missing property in the input object for a mapping field, the output object will miss the property.
236+
169237
## Limits
170238
To provide consistent performance and reliability at scale, Segment enforces default use and rate limits for Reverse ETL.
171239

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
---
2+
title: 'Listrak Source'
3+
hidden: true
4+
private: true
5+
---
6+
{% include content/source-region-unsupported.md %}
7+
8+
> info ""
9+
> The Listrak Source is in beta, and Listrak is still developing the source. To join Listrak's beta program or to give any feedback to help improve the Listrak Source and its documentation, [let Listrak know](mailto:[email protected]).
10+
11+
Listrak is the retail industry’s leading customer engagement platform. Listrak delivers results for more than 1,000 retailers by providing best-in-class email, text message marketing, identity resolution marketing and push notifications through seamless cross-channel orchestration. Listrak’s data-first approach delivers 1:1 personalization at scale so you can send messages at precisely the right time across the right combination of channels and devices to maximize customer engagement, revenue, and lifetime value.
12+
13+
The Listrak as an Event Cloud Source integration enables marketers to utilize behavioral activities such as sending, opening, clicking, converting, bouncing, abuse complaints, and unsubscribing events within the Segment platform. This capability empowers marketers to perform downstream analysis by leveraging additional platform integrations set up as Segment destinations.
14+
15+
[Listrak](https://listrak.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners){:target="_blank"} provides self-serve predictive analytics for growth marketers, using machine learning to automate audience insights and recommendations.
16+
17+
This is an [Event Cloud Source](https://segment.com/docs/sources/#event-cloud-sources){:target="_blank"} can export data into your Segment warehouse and federate the exported data into your other enabled Segment Destinations.
18+
19+
Listrak as an Event Cloud Source enables marketers to align contacts in Listrak’s lists to audiences in Segment.
20+
21+
Listrak maintains this Source. For any issues with the source, [contact Listrak's Support team](mailto:[email protected]).
22+
23+
## Getting Started
24+
25+
1. From your workspace's [Sources catalog page](https://app.segment.com/goto-my-workspace/sources/catalog){:target="_blank"} click **Add Source**.
26+
27+
1. Search for **Listrak** in the Sources Catalog, select **Listrak**, and click **Add Source**.
28+
29+
1. On the next screen, give the Source a nickname configure any other settings.
30+
- The nickname is used as a label in the Segment app, and Segment creates a related schema name in your warehouse. The nickname can be anything, but Segment recommends using something that reflects the source itself and distinguishes amongst your environments (for example, `Listrak_Prod`, `Listrak_Staging`, `Listrak_Dev`).
31+
32+
1. Click **Add Source** to save your settings.
33+
34+
1. Copy the Write key from the Segment UI and log in to your Listrak account - navigate to **Integrations > Integrations Manager > New Integration > Segment Integration**.
35+
- You should see the Information tab for the Segment Integration.
36+
- Click the Setup tab, where you'll find input fields that allow you to enter the write key as well as other relevant information.
37+
38+
## Components
39+
40+
**Stream**
41+
42+
Listrak uses Segment's Source component to send Segment event data. It uses server-side Track and Identify 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.
43+
44+
The default behavior is for Listrak to pass the `userId` associated with the email recipient as the `userId`. The Listrak Segment integration maps a Listrak `Segmentation Field` to Segment's `userId`. If no value for the `Segmentation Field` exists, Listrak won't pass a `userId`. Listrak always uses the contact’s email address as the `anonymousId` and always adds a trait called `email` with the user's email. Listrak also provides a trait that contains the Listrak `listId` with the name `Listrak_list_{listId}`, where `{listId}` is the id of the list, for example, `Listrak_list_12345`.
45+
46+
47+
**Events**
48+
49+
The following table lists events that Listrak sends to Segment. These events appear as tables in your warehouse and as regular events in other Destinations. Listrak includes the `userId` if available.
50+
51+
| Event Name | Description |
52+
| ----------- | ----------- |
53+
| `Email Sent` | Email was sent successfully |
54+
| `Email Opened` | Prospect opened the email |
55+
| `Link Clicked` | Prospect clicked the tracking link |
56+
| `Email Replied` | Prospect replied to the email sent |
57+
| `Email Bounced` | Email servers rejected the email |
58+
| `Email Unsubscribed` | Prospect clicked the unsubscribe link |
59+
60+
61+
**Event Properties**
62+
63+
The following table lists the properties included in the events table:
64+
65+
|Property Name |Description |
66+
| ----------- | ----------- |
67+
|`event` |Email event type |
68+
|`userId` |Prospect email ID |
69+
|`email_id` |ID of the email |
70+
|`fromId` |Sender email ID |
71+
|`email_subject`|Subject line of the email |
72+
|`link` |URL of the link clicked |
73+
74+
75+
76+
## Adding Destinations
77+
78+
Now that your Source is set up, you can connect it with Destinations.
79+
80+
The Listrak Source works better when you also connect Listrak as a Destination Action. With the Listrak Destination Action, you can use Segment to send Listrak user and event data, enabling you to trigger email campaigns. Listrak is developing the Destination Action features, enabling you to send website or mobile data to Listrak.
81+
82+
Log into your downstream tools and check to see that your events appear as expected and that they contain all of the properties you expect. If your events and properties don’t appear, check the [Event Delivery](https://segment.com/docs/connections/event-delivery/){:target="_blank"} tool, and refer to the Destination docs for each tool for troubleshooting.
83+
84+
If there are any issues with how the events are arriving to Segment, [contact the Listrak support team](mailto:[email protected]).

src/connections/sources/catalog/cloud-apps/onetrust/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ OneTrust makes it easy for you to capture, centralize, govern, and sync consente
88

99
This is an Event Cloud Source which can not only export data into your Segment warehouse, but they can also federate the exported data into your other enabled Segment Destinations.
1010

11-
This source is maintained by OneTrust. For any issues with the source, [contact their support team]([email protected]).
11+
This source is maintained by OneTrust. For any issues with the source, [contact their support team](mailto:[email protected]){:target="_blank”}.
1212

1313
## Getting Started
1414

src/engage/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Invite teammates to your Engage dev space and grant them access to the space. Na
4141

4242
## Step 3: Connect production sources
4343

44-
1. From your Engage space, go to your space Settings and click **Sources**.
44+
1. From your Engage space, navigate to **Unify settings** and click **Profile sources**.
4545
2. On the screen that appears, choose one or two production sources from your Connections workspace.
4646
Segment recommends connecting your production website or App source as a great starting point.
4747

src/unify/faqs.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,7 @@ Any of the external IDs can be used to query a profile. When a profile is reques
5050

5151
### Can ExternalID's be changed or removed from the profiles?
5252
No. As the Identity Graph uses ExternalIDs, they remain for the lifetime of the user profile.
53+
54+
### Can I delete specific events from a user profile in Unify?
55+
No. Alternatively, you may delete the entire user profile from Segment using a [GDPR deletion request](/docs/privacy/user-deletion-and-suppression/).
56+

0 commit comments

Comments
 (0)