Skip to content

Commit 2251914

Browse files
authored
Merge pull request #8051 from segmentio/DOCSPLAT-2995
DOCSPLAT 2995 Changes to simplify serialization
2 parents 4604909 + 0bc0bc6 commit 2251914

File tree

5 files changed

+4
-10
lines changed

5 files changed

+4
-10
lines changed

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ Our Clicky destination code is open-source on GitHub. You can check out the code
1515
3. In the destination settings, enter your Site ID in the settings. You can find your Site ID under the Preferences of your account.
1616
4. Segment automatically initializes Clicky's script with your Site ID upon loading analytics.js.
1717

18-
- - -
19-
2018
## Page
2119

2220
If you're not familiar with the Segment Specs, take a look to understand what the [Page method](/docs/connections/spec/page/) does. An example call would look like this:
@@ -63,8 +61,6 @@ analytics.track("My Custom Event", {
6361

6462
When you use our [`track`](/docs/connections/spec/track/) method, a goal is created in Clicky. Only the event name and the revenue of the event (if it exists) will be included in the call. Clicky doesn't support any other event properties.
6563

66-
- - -
67-
6864
## Troubleshooting
6965

7066
### My visits aren't showing up in Clicky

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ To turn on the destination, do the following:
1717

1818
**Note:** Because ClientSuccess focuses on group level events, you must pass group information before your events will show up. If you turn on the ClientSuccess destination in Segment and don't see events in ClientSuccess after 24 hours, it may be that your engineers need to send group information to Segment using Segment's `group` call.
1919

20-
- - -
21-
2220
## Getting Started (for Developers)
2321

2422
ClientSuccess supports the `identify`, `group`, `track`, and `page` methods of Segment.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Drip Destination
33
id: 54521fd525e721e32a72eeaa
44
cmode-override: true
55
---
6-
The Drip destination code is all open-source on GitHub if you want to check it out: [JavaScript](https://github.com/segment-integrations/analytics.js-integration-drip){:target="_blank"},(iOS and Android work using the server destination).
6+
The Drip destination code is all open-source on GitHub if you want to check it out: [JavaScript](https://github.com/segment-integrations/analytics.js-integration-drip){:target="_blank"}, (iOS and Android work using the server destination).
77

88
## Getting Started
99

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Segment `identify` trait on the left to the Eloqua field on the right:
4444
| `title` | Title |
4545

4646
Follow the Segment spec to ensure proper mapping of these fields from Segment
47-
`identify` traits: /docs/connections/spec/identify/#traits.
47+
`identify` traits: [/docs/connections/spec/identify/#traits](/docs/connections/spec/identify/#traits).
4848

4949
In addition, Segment supports mapping custom `identify` traits to Eloqua custom
5050
object fields. To do so, you can set up mappings in the settings for your

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ analytics.identify('userId123', {
1818
});
1919
```
2020

21-
A `userId` is required on all `identify` calls sent to Evergage. When you call `identify` Segment will call both `setUser` and `setUserField` in the [Evergage library](https://doc.evergage.com/display/EKB/Send+Data+to+Evergage+via+JavaScript){:target="_blank"} to insert both the `userId` and corresponding user traits into {{ integration.name}}.
21+
A `userId` is required on all `identify` calls sent to Evergage. When you call `identify` Segment will call both `setUser` and `setUserField` in the [Evergage library](https://doc.evergage.com/display/EKB/Send+Data+to+Evergage+via+JavaScript){:target="_blank"} to insert both the `userId` and corresponding user traits into Evergage.
2222

2323
## Group
2424
If you're not familiar with the Segment Specs, take a look to understand what the [Group method](/docs/connections/spec/group/) does. An example call would look like:
@@ -29,7 +29,7 @@ analytics.group('companyId123', {
2929
});
3030
```
3131

32-
A `groupId` is required on all `group` calls sent to Evergage. When you call `group` Segment will call both `setCompany` and `setAccountField` in the [Evergage library](https://doc.evergage.com/display/EKB/Send+Data+to+Evergage+via+JavaScript){:target="_blank"} to insert both the `groupId` and corresponding group traits into {{ integration.name}}.
32+
A `groupId` is required on all `group` calls sent to Evergage. When you call `group` Segment will call both `setCompany` and `setAccountField` in the [Evergage library](https://doc.evergage.com/display/EKB/Send+Data+to+Evergage+via+JavaScript){:target="_blank"} to insert both the `groupId` and corresponding group traits into Evergage.
3333

3434
## Track
3535
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](/docs/connections/spec/track/) does. An example call would look like:

0 commit comments

Comments
 (0)