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/strikedeck/index.md
+36-14Lines changed: 36 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,10 @@ title: Strikedeck Destination
4
4
---
5
5
[Strikedeck](https://strikedeck.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a Customer Success platform which actively manages customer relationships to reduce churn, increase existing revenue and influence new sales. Strikedeck includes Customer Engagement Analytics, Health Scorecard, Notifications, Recommendations & Actions.
6
6
7
-
This destination is maintained by Strikedeck. For any issues with the destination, [contact their team](mailto:[email protected]).
7
+
Strikedeck maintains this documentation. For any issues with the destination, the [Strikedeck Support team](mailto:[email protected]).
8
8
9
-
_**NOTE:** The Strikedeck Destination is currently in beta, which means that they are still actively developing the destination. This doc was last updated on April 23, 2019. If you are interested in joining their beta program or have any feedback to help improve the Strikedeck Destination and its documentation, [let their team know](mailto:[email protected])!_
9
+
> note ""
10
+
> **NOTE:** The Strikedeck Destination is in beta, which means that they are still actively developing the destination. This doc was last updated on April 23, 2019. If you have interest in joining the Strikedeck beta program or have any feedback to help improve the Strikedeck Destination and its documentation, let the [Strikedeck Support team](mailto:[email protected]) know.
10
11
11
12
12
13
## Getting Started
@@ -19,45 +20,66 @@ _**NOTE:** The Strikedeck Destination is currently in beta, which means that the
19
20
20
21
## Page
21
22
22
-
If you're not familiar with the Segment Specs, take a look to understand what the [Page method](https://segment.com/docs/connections/spec/page/)does. An example call would look like:
23
+
For more information about the Page method, see the [Segment Specs - Page](https://segment.com/docs/connections/spec/page/)documentation.
23
24
24
-
```
25
+
An example Page call looks like:
26
+
27
+
```js
25
28
analytics.page()
26
29
```
27
30
28
-
Page calls will be sent to Strikedeck as a `pageview`.
31
+
Segment sends Page calls to Strikedeck as a `pageview`.
29
32
30
33
31
34
## Screen
35
+
For more information about the Screen method, see the [Segment Specs - Screen](https://segment.com/docs/connections/spec/screen/) documentation.
32
36
33
-
If you're not familiar with the Segment Specs, take a look to understand what the [Screen method](https://segment.com/docs/connections/spec/screen/) does. An example call would look like:
37
+
An example Screen call looks like:
34
38
35
-
```
39
+
```js
36
40
[[SEGAnalytics sharedAnalytics] screen:@"Home"];
37
41
```
38
42
39
-
Screen calls will be sent to Strikedeck as a `screenview`.
43
+
Segment sends Screen calls to Strikedeck as a `screenview`.
40
44
41
45
42
46
## Identify
47
+
For more information about the Screen method, see the [Segment Specs - Screen](https://segment.com/docs/connections/spec/identify/) documentation.
43
48
44
-
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](https://segment.com/docs/connections/spec/identify/) does. An example call would look like:
Identify calls will be sent to Strikedeck as an `identify` event.
57
+
Segment sends Identify to Strikedeck as an `identify` event.
53
58
54
59
55
-
## Track
60
+
## Group
61
+
62
+
For more information about the Screen method, see the [Segment Specs - Screen](https://segment.com/docs/connections/spec/group/) documentation.
56
63
57
-
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](https://segment.com/docs/connections/spec/track/) does. An example call would look like:
64
+
An example Group call looks like:
58
65
66
+
```js
67
+
analytics.group( {
68
+
groupId:'abc123'
69
+
});
59
70
```
71
+
72
+
Segment sends Group to Strikedeck as a `group` event.
73
+
74
+
75
+
## Track
76
+
77
+
For more information about the Screen method, see the [Segment Specs - Screen](https://segment.com/docs/connections/spec/track/) documentation.
78
+
79
+
An example Track call looks like:
80
+
81
+
```js
60
82
analytics.track('Clicked Login Button')
61
83
```
62
84
63
-
Track calls will be sent to Strikedeck as a `track` event.
85
+
Segment sends Track calls to Strikedeck as a `track` event.
0 commit comments