Skip to content

Commit 2749de9

Browse files
authored
Merge pull request #1942 from glosier/patch-1
Minor fixes to customer.io destination docs
2 parents 484db38 + 83a6191 commit 2749de9

File tree

1 file changed

+4
-4
lines changed
  • src/connections/destinations/catalog/customer-io

1 file changed

+4
-4
lines changed

src/connections/destinations/catalog/customer-io/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If you're not familiar with the Segment Specs, take a look to understand what th
3535
analytics.page();
3636
```
3737

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.
3939

4040
## Screen
4141

@@ -45,7 +45,7 @@ If you're not familiar with the Segment Specs, take a look to understand what th
4545
[[SEGAnalytics sharedAnalytics] screen:@"Home"];
4646
```
4747
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`.
4949
5050
5151
## Identify
@@ -79,7 +79,7 @@ analytics.identify('userId123', {
7979
});
8080
```
8181

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.
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.
8383

8484
```javascript
8585
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
114114
analytics.track('Clicked Button');
115115
```
116116

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.
118118

119119
## Device Token Set up
120120

0 commit comments

Comments
 (0)