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/destinations/catalog/customer-io/index.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ If you're not familiar with the Segment Specs, take a look to understand what th
35
35
analytics.page();
36
36
```
37
37
38
-
Page events send to Customer.io as a `Page View` event where names and properties are optional. In the Customer.io "Activity View", the event will have "Activity Type" set to "Page View" and "Activity Name" set to the page name. If there is no page name, "Activity Name" defaults to the page URL.
38
+
Page events send to Customer.io as a `Page View` event where names and properties are optional. In the Customer.io "Activity Logs", the event will have "Activity Type" set to "Page View" and "Activity Name" set to the page name. If there is no page name, "Activity Name" defaults to the page URL.
39
39
40
40
## Screen
41
41
@@ -45,7 +45,7 @@ If you're not familiar with the Segment Specs, take a look to understand what th
45
45
[[SEGAnalytics sharedAnalytics] screen:@"Home"];
46
46
```
47
47
48
-
Screen events send to Customer.io as a custom event. In the Customer.io "Activity View", "Activity Type" is `event` and "Activity Value" sets to `Viewed {screen name} Screen`. For the earlier example the "Activity Value" will be `Viewed Home Screen`. If there is no screen name, then "Activity Value" will be `Viewed Undefined Screen`.
48
+
Screen events send to Customer.io as a custom event. In the Customer.io "Activity Logs", "Activity Type" is `event` and "Activity Value" sets to `Viewed {screen name} Screen`. For the earlier example the "Activity Value" will be `Viewed Home Screen`. If there is no screen name, then "Activity Value" will be `Viewed Undefined Screen`.
If you want to change the `id` or `email` you've assigned a person in Customer.io, you have to pass a person's `cio_id`, in the format `cio_<cio_id value>` as the `userId` in your identify call. Currently, you must retrieve this value from a person's page in the Customer.io interface. In the future, you'll be able to do that using this call from Customer.io API.
82
+
If you want to change the `id` or `email` you've assigned a person in Customer.io, you have to pass a person's `cio_id`, in the format `cio_<cio_id value>` as the `userId` in your identify call. Currently, you must retrieve this value from a person's page in the Customer.io interface. In the future, you'll be able to do that using this call from Customer.io API.
83
83
84
84
```javascript
85
85
analytics.identify('cio_<cio_id value>', {
@@ -114,7 +114,7 @@ If you're not familiar with the Segment Specs, take a look to understand what th
114
114
analytics.track('Clicked Button');
115
115
```
116
116
117
-
Track events send to Customer.io as `custom events`. In the Customer.io "Activity View", "Activity Type" sets to `event` and "Activity Name" sets to the event name.
117
+
Track events send to Customer.io as `custom events`. In the Customer.io "Activity Logs", "Activity Type" sets to `event` and "Activity Name" sets to the event name.
Copy file name to clipboardExpand all lines: src/personas/debugger.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ Using the Personas Source Debugger, you can inspect and monitor the events that
6
6
7
7
Because Personas generates a unique Source for every Destination connected to a Space, the Debugger gives you insight into how Personas sends events before they reach their Destination.
8
8
9
-
The Debugger provides you with the payload information you need to troubleshoot potential formatting issues and ensure process and sends events as your Destinations expect.
9
+
The Debugger provides you with the payload information you need to troubleshoot potential formatting issues and ensure Personas sends events as your Destinations expect.
10
10
11
11
## Working with the Debugger
12
12
@@ -23,4 +23,4 @@ The Debugger displays the payload in two tabs:
23
23
***Pretty view** shows the actual API call Segment sends to your Destination.
24
24
***Raw view** shows the full JSON object Segment sends to your Destination from the calls you sent, including timestamps, properties, traits, and ids.
25
25
26
-
Similar to the Connections Debugger, the Personas Debugger allows you to search through events, using information contained within the event's payload.
26
+
Similar to the Connections Debugger, the Personas Debugger allows you to search through events using information contained within the event's payload.
0 commit comments