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
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ 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
-
1. Navigate tothe "Access Management" tab and select "Service Accounts":
20
+
1. Navigate to the "Access Management" tab and select "Service Accounts":
21
21

22
22
4. To create a new account click on the "New" icon:
23
23

@@ -40,7 +40,7 @@ You can then proceed to configure your destination.
40
40
41
41
## Identify
42
42
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.
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/connections/spec/identify/) does.
44
44
45
45
An example call can look like:
46
46
@@ -57,7 +57,7 @@ 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 the Segment spec, please take time to review to understand what the [`track` method](/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/connections/spec/track/) can do.
61
61
62
62
An example call can look like:
63
63
@@ -73,7 +73,7 @@ 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 the Segment spec, please take time to review to understand what the [`group` method](/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/connections/spec/group/) can do.
77
77
78
78
An example call can look like:
79
79
@@ -100,7 +100,7 @@ Segment sends Group calls to *Selligent Marketing Cloud* as a `group` event. The
100
100
101
101
## Alias
102
102
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.
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/connections/spec/alias/) can do.
104
104
105
105
An example call can look like:
106
106
@@ -112,7 +112,7 @@ 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 the Segment spec, please take time to review to understand what the [`page` method](/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/connections/spec/page/) can do.
116
116
117
117
An example call can look like:
118
118
```js
@@ -125,7 +125,7 @@ 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 the Segment spec, please take time to review to understand what the [`screen` method](/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/connections/spec/screen/) can do.
Copy file name to clipboardExpand all lines: src/connections/destinations/repeater-migration.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ You can create a QA instance of your destination to verify that it is configured
46
46
1. If you created a QA instance of the Repeater and you created a QA destination instance, you can test this process before you use production data.
47
47
48
48
49
-
2. You can disable the repeater and enable the new destination instance manually in the Segment web app, or by using the [Segment Public API](/docs/-api/).
49
+
2. You can disable the repeater and enable the new destination instance manually in the Segment web app, or by using the [Segment Public API](/docs/public-api/).
50
50
51
51
-**If the destination can de-duplicate events**, enable the new instance of the destination, and _then_ disable the Repeater.
52
52
-**If the destination does not de-duplicate events**, you can disable the Repeater and then enable the new instance of the destination.
Copy file name to clipboardExpand all lines: src/connections/spec/mobile.md
+32-12Lines changed: 32 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
1
---
2
2
title: 'Native Mobile Spec'
3
+
redirect_from:
4
+
- '/spec/mobile'
3
5
---
4
6
5
7
One of the core components of the Segment [Spec](/docs/connections/spec/) is the [`track`](/docs/connections/spec/track) method. It records any arbitrary event that the user has triggered. For Mobile tracking, in addition to `screen` calls, you'll want to send **specific event names** that Segment recognizes semantically. That way, we can transform them correctly before sending them off to downstream destinations.
@@ -19,20 +21,38 @@ These events pair nicely with Segment's [ecommerce spec](/docs/connections/spec/
19
21
The Segment Native Mobile Spec includes the following semantic events:
Segment recommends using the above event names if you're going to be integrating the events yourself. This will ensure that they can be mapped effectively in downstream tools.
Copy file name to clipboardExpand all lines: src/connections/spec/page.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
1
---
2
2
title: 'Spec: Page'
3
+
redirect_from:
4
+
- '/spec/page'
3
5
---
4
6
5
7
The `page` call lets you record whenever a user sees a page of your website, along with any optional properties about the page. Calling `page` or [`screen`](/docs/connections/spec/screen/) in a Segment [source](/docs/connections/sources/) is one of the first steps to getting started with Segment.
Copy file name to clipboardExpand all lines: src/connections/spec/screen.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
1
---
2
2
title: 'Spec: Screen'
3
+
redirect_from:
4
+
- '/spec/screen'
3
5
---
4
6
5
7
The `screen` call lets you record whenever a user sees a screen, the mobile equivalent of `page`, in your mobile app, along with any properties about the screen. Calling `page` or [`screen`](/docs/connections/spec/screen/) in one of Segment's [sources](/docs/connections/sources/) is one of the first steps to getting started with Segment.
Copy file name to clipboardExpand all lines: src/partners/enable-with-segment.md
+3-6Lines changed: 3 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,7 @@
2
2
title: Enable with OAuth
3
3
---
4
4
5
-
> info ""
6
-
> If you're a customer who just wants to build a simple script or app against a single workspace, you may want to use [Workspace Access Tokens](/docs/config-api/authentication).
7
-
8
-
Enable with OAuth, supported with the [Public API](/docs/api), allows partners to build seamless flows for customers to implement and enable integrations within their workspace. This is a [post-launch requirement](/docs/partners/#post-launch) for a partner to graduate from public beta to public.
5
+
Enable with OAuth, supported with the [Public API](/docs/api/public-api), allows partners to build seamless flows for customers to implement and enable integrations within their workspace. This is a [post-launch requirement](/docs/partners/#post-launch) for a partner to graduate from public beta to public.
9
6
10
7
## Concepts
11
8
@@ -191,7 +188,7 @@ If you created an App with a more permissive scope, you have access to more APIs
191
188
- With the `workspace` scope you can change all resources
192
189
- With the `workspace:read` you can read all resources, but not change them
193
190
194
-
A full list of APIs are here: https://segment.com/docs/config-api/
191
+
A full list of APIs are here: https://segment.com/docs/api/public-api/
195
192
196
193
The example below shows how you would get a users workspace if you had any of the above scopes:
197
194
@@ -309,4 +306,4 @@ When the app was installed, you should have received a Segment `workspace` and
309
306
310
307
### OK I managed to create an App. How do I use your APIs?
311
308
312
-
See [the API docs](https://segment.com/docs/config-api/), and the Postman API reference collection that you can run as-is https://reference.segmentapis.com/#51d965d3-4a67-4542-ae2c-eb1fdddc3df6.
0 commit comments