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/selligent-marketing-cloud/index.md
+18-18Lines changed: 18 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,9 +17,9 @@ Before you enable Selligent Marketing Cloud in your Destination page, validate w
17
17
1. Login into your *Selligent Marketing Cloud* environment.
18
18
2. Within the *Selligent Marketing Cloud* module click the wheel icon at the bottom-left corner to access the general configuration panel:
19
19

20
-
3. Click on the "Access Management" tab and select "Service Accounts":
20
+
1. Navigate tothe "Access Management" tab and select "Service Accounts":
21
21

22
-
4.In order to create a new account click on the "New" icon:
22
+
4.To create a new account click on the "New" icon:
23
23

24
24
5. Provide a "Name" and choose the type "Custom", confirm by clicking the Save button.
25
25
6. Set an expiration date. This indicates the period the key will be valid before it needs to be refreshed.
@@ -30,21 +30,21 @@ You can then proceed to configure your destination.
30
30
31
31
1. From your Segment UI's Destinations page click on "Add Destination".
32
32
2. Search for "*Selligent Marketing Cloud*" within the Destinations Catalog and confirm the Source you'd like to connect to.
33
-
3.Drop in the "*API Key*" and "*API Secret*" into your Segment Settings UI.
33
+
3.Enter the "*API Key*" and "*API Secret*" into your Segment Settings UI.
34
34
4.*SMC Admin URL* - Copy the link you use to log into the SMC admin should look like https://**{you company}**.slgnt.us
35
35

36
36
5.*Organization* - You will find the organization name on the top-right hand corner next to the menu icon.
37
37

38
-
6.*Allowed Events* - Add the `track` event names that you would like to whitelist/send to SMC
38
+
6.*Allowed Events* - Add the `track` event names that you would like to allowlist or send to SMC
39
39
7.*Events data list API name* - The default value is **segment_events**, if you have any issue regarding the property please contact the *Selligent Marketing Cloud*[Support team](https://support.selligent.com).
40
40
41
41
## Identify
42
42
43
-
If you haven't had a chance to review our spec, please take time to review and to understand what the [`identify` method](https://segment.com/docs/spec/identify/) does.
43
+
If you haven't had a chance to review the Segment spec, please take time to review and to understand what the [`identify` method](/docs/spec/identify/) does.
44
44
45
45
An example call can look like:
46
46
47
-
```
47
+
```js
48
48
analytics.identify('userId123', {
49
49
property1:1,
50
50
property2:'test',
@@ -57,11 +57,11 @@ Identify calls will be sent to *Selligent Marketing Cloud* as an `identify` even
57
57
58
58
## Track
59
59
60
-
If you haven't had a chance to review our spec, please take time to review to understand what the [`track` method](https://segment.com/docs/spec/track/) can do.
60
+
If you haven't had a chance to review the Segment spec, please take time to review to understand what the [`track` method](/docs/spec/track/) can do.
61
61
62
62
An example call can look like:
63
63
64
-
```
64
+
```js
65
65
analytics.track('userId123', {
66
66
property1:1,
67
67
property2:'test',
@@ -73,11 +73,11 @@ Track calls will be sent to *Selligent Marketing Cloud* as a `track` event.
73
73
74
74
## Group
75
75
76
-
If you haven't had a chance to review our spec, please take time to review to understand what the [`group` method](https://segment.com/docs/spec/group/) can do.
76
+
If you haven't had a chance to review the Segment spec, please take time to review to understand what the [`group` method](/docs/spec/group/) can do.
77
77
78
78
An example call can look like:
79
79
80
-
```
80
+
```json
81
81
{
82
82
"type": "group",
83
83
"groupId": "SegmentToSMCStatic",
@@ -90,32 +90,32 @@ An example call can look like:
90
90
}
91
91
```
92
92
93
-
Group calls will be sent to *Selligent Marketing Cloud* as a `group` event. These calls can be leveraged to populate static segments in the *Selligent Marketing Cloud* platform. The static segment needs to be created first in the Selligent Marketing Cloud platform before it can be leveraged. The call should adhere the above example and consists out of the following elements:
93
+
Segment sends Group calls to *Selligent Marketing Cloud* as a `group` event. These calls are used to populate static segments in the *Selligent Marketing Cloud* platform. The static segment must be created in Selligent Marketing Cloud before you can use it. The call should adhere the above example and contain the following elements:
94
94
* <u>groupId</u>: The *api_name* of the static segment to populate
95
95
* <u>userId</u>: The value on which the matching to populate the segment should happen
96
96
* <u>traits</u>:
97
97
* <u>matchkey</u>: this is a mandatory trait and should contain the name of the field in the userlist on which the matching should be done
98
-
* <u>method</u>: this trait is optional and based on it we will do a remove call or an add call to the *Selligent Marketing Cloud* segment. The two values possible are REMOVE or ADD but it will default to ADD. So it’s only needed in case of a remove call
98
+
* <u>method</u>: this trait is optional and indicates either a remove call or an add call to the *Selligent Marketing Cloud* segment. The two values possible are REMOVE or ADD but it will default to ADD. So it’s only needed in case of a remove call
99
99
* <u>userlist</u>: this is a mandatory trait and should contain the *api_name* of the userlist in *Selligent Marketing Cloud*
100
100
101
101
## Alias
102
102
103
-
If you haven't had a chance to review our spec, please take time to review to understand what the [`alias` method](https://segment.com/docs/spec/alias/) can do.
103
+
If you haven't had a chance to review the Segment spec, please take time to review to understand what the [`alias` method](/docs/spec/alias/) can do.
104
104
105
105
An example call can look like:
106
106
107
-
```
107
+
```js
108
108
analytics.alias("507f191e81");
109
109
```
110
110
111
111
Track calls will be sent to *Selligent Marketing Cloud* as a `alias` event.
112
112
113
113
## Page
114
114
115
-
If you haven't had a chance to review our spec, please take time to review to understand what the [`page` method](https://segment.com/docs/spec/[page]/) can do.
115
+
If you haven't had a chance to review the Segment spec, please take time to review to understand what the [`page` method](/docs/spec/page/) can do.
116
116
117
117
An example call can look like:
118
-
```
118
+
```js
119
119
analytics.page("Home");
120
120
```
121
121
@@ -125,11 +125,11 @@ Track calls will be sent to *Selligent Marketing Cloud* as a `page` event.
125
125
126
126
## Screen
127
127
128
-
If you haven't had a chance to review our spec, please take time to review to understand what the [`screen` method](https://segment.com/docs/spec/screen/) can do.
128
+
If you haven't had a chance to review the Segment spec, please take time to review to understand what the [`screen` method](/docs/spec/screen/) can do.
0 commit comments