Skip to content

Commit 70ba12b

Browse files
author
markzegarelli
authored
Merge pull request #1124 from segmentio/strikedeck
Add group call section
2 parents a926135 + 9c87ca5 commit 70ba12b

File tree

1 file changed

+36
-14
lines changed
  • src/connections/destinations/catalog/strikedeck

1 file changed

+36
-14
lines changed

src/connections/destinations/catalog/strikedeck/index.md

Lines changed: 36 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ title: Strikedeck Destination
44
---
55
[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.
66

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]).
88

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.
1011
1112

1213
## Getting Started
@@ -19,45 +20,66 @@ _**NOTE:** The Strikedeck Destination is currently in beta, which means that the
1920

2021
## Page
2122

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

24-
```
25+
An example Page call looks like:
26+
27+
```js
2528
analytics.page()
2629
```
2730

28-
Page calls will be sent to Strikedeck as a `pageview`.
31+
Segment sends Page calls to Strikedeck as a `pageview`.
2932

3033

3134
## Screen
35+
For more information about the Screen method, see the [Segment Specs - Screen](https://segment.com/docs/connections/spec/screen/) documentation.
3236

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:
3438

35-
```
39+
```js
3640
[[SEGAnalytics sharedAnalytics] screen:@"Home"];
3741
```
3842

39-
Screen calls will be sent to Strikedeck as a `screenview`.
43+
Segment sends Screen calls to Strikedeck as a `screenview`.
4044

4145

4246
## Identify
47+
For more information about the Screen method, see the [Segment Specs - Screen](https://segment.com/docs/connections/spec/identify/) documentation.
4348

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:
49+
An example Identify call looks like:
4550

46-
```
51+
```js
4752
analytics.identify('userId123', {
4853
4954
});
5055
```
5156

52-
Identify calls will be sent to Strikedeck as an `identify` event.
57+
Segment sends Identify to Strikedeck as an `identify` event.
5358

5459

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

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:
5865

66+
```js
67+
analytics.group( {
68+
groupId: 'abc123'
69+
});
5970
```
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
6082
analytics.track('Clicked Login Button')
6183
```
6284

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

Comments
 (0)