Skip to content

Commit 6fc2031

Browse files
Merge pull request #8050 from lopenchi/DOCSPLAT-2993
[DOCSPLAT-2993] Modifications for serialization
2 parents 2251914 + 9fce7c3 commit 6fc2031

File tree

30 files changed

+43
-61
lines changed

30 files changed

+43
-61
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ When you enable Chartbeat in the Segment web app, your changes appear in the Seg
1111

1212
Chartbeat is only supported on the client-side.
1313

14-
- - -
1514

1615

1716
## Page

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ id: 54521fd525e721e32a72eea2
88
Our Clicky destination code is open-source on GitHub. You can check out the code [in the @segment-integrations/analytics.js-integration-clicky](https://github.com/segment-integrations/analytics.js-integration-clicky){:target="_blank"} repository.
99

1010

11-
## Getting Started
11+
## Getting started
1212

1313
1. From the Segment web app, click **Catalog**.
1414
2. Search for "Clicky" in the Catalog, select it, and choose which of your sources to connect the destination to.

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ id: 55677dfd0a20f4e22f0fb39a
55
---
66
This destination is maintained by ClientSuccess.
77

8-
## Getting Started (for CSMs)
8+
## Getting started (for CSMs)
99

1010
If your engineers have already set up Segment, adding Segment data to ClientSuccess is straightforward. All you need to do is turn on the destination.
1111

@@ -17,7 +17,8 @@ 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-
## Getting Started (for Developers)
20+
21+
## Getting started (for developers)
2122

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

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ The Cubitic application key can be obtained by contacting signup@cubitic.io
1212

1313
Cubitic supports the `identify` and `track` methods.
1414

15-
- - -
1615

1716
## Identify
1817

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ To get started with Cxense and Segment, you'll need the following:
1717

1818
Assuming these criteria are met, you can add Cxense as a destination for your desired source in your Segment account.
1919

20-
- - -
2120

2221
## Page
2322

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ buildscript {
4444
apply plugin: 'com.google.gms.google-services'
4545
```
4646

47-
> warning "Use the `aar` package when adding the Segment-Firebase SDK"
47+
> warning "Use the aar package when adding the Segment-Firebase SDK"
4848
> The Firebase SDK requires Android resources which are available on `aar` packages.
4949
5050

src/connections/destinations/catalog/framed-io/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ Once your application is set up and instrumented with Segment, turn on Framed in
88

99
Framed supports the `identify` and `track` methods.
1010

11-
- - -
1211

1312
## Identify
1413

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ You can use `identify` to create a lead or a contact when a website visitor fill
1919
### User ID
2020
`userId` is a mandatory field which is used to identify the lead or contact in Freshsales. If your user identifier is not email, then email has to be a part of traits.
2121

22-
<pre>
22+
```json
2323
{
2424
"userId": "97980cfea0067",
2525
"traits": {
@@ -32,11 +32,11 @@ You can use `identify` to create a lead or a contact when a website visitor fill
3232
}
3333
}
3434
}
35-
</pre>
35+
```
3636

3737
By default, every `identity` is created as a lead. If you'd like an identity to be a contact, you'd need to pass `fs_contact` as `true` as a part of traits.
3838

39-
<pre>
39+
```json
4040
{
4141
"userId" : "97980cfea0067",
4242
"traits" : {
@@ -50,7 +50,7 @@ By default, every `identity` is created as a lead. If you'd like an identity to
5050
}
5151
}
5252
}
53-
</pre>
53+
```
5454

5555
### Traits
5656
`traits` are pieces of information you know about a user that are included in an `identify` method.
@@ -72,7 +72,7 @@ As part of traits, you can send custom fields created in Freshsales by using the
7272
### Objects:
7373
Accounts and Deals associated to a contact or lead can also be updated in Freshsales. The objects company and deal in the identity correspond to the Accounts and Deals in Freshsales. You can pass the `traits` of the company or the deal along with the respective objects in the identity.
7474

75-
```
75+
```json
7676
{
7777
"userId" : "97980cfea0067",
7878
"traits" : {
@@ -98,7 +98,7 @@ You can track activities of your website visitors. If a user is subscribing to a
9898
### Track request payload
9999

100100

101-
```
101+
```json
102102
{
103103
"userId" : "john.doe@example.com",
104104
"event": "Email Bounced",
@@ -120,7 +120,7 @@ When you call a `page` event, we send a pageview to Freshsales. You can send ext
120120

121121
### Sample Page request payload
122122

123-
```
123+
```json
124124
{
125125
"userId" : "john.doe@example.com",
126126
"name": "Page view",

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ analytics.identify("userId");
3939

4040
In addition, Segment will send over along any traits included in the `identify` call. The example call below would send over both `plan` and `logins`.
4141

42-
```
42+
```js
4343
analytics.identify("userId123", {
4444
plan: "premium",
4545
logins: 5
@@ -50,7 +50,7 @@ analytics.identify("userId123", {
5050

5151
Both `email` and `displayName` are special traits that will be passed to FullStory to be used in their interface as explained in [FullStory's docs](https://help.fullstory.com/hc/en-us/articles/360020828113){:target="_blank"}. These traits are optional.
5252

53-
```
53+
```js
5454
analytics.identify("userId123", {
5555
email: "john.doe@example.com",
5656
displayName: "John Doe"
@@ -63,7 +63,7 @@ If you're not familiar with the Segment Specs, take a look to understand what th
6363

6464
An example call would look like:
6565

66-
```
66+
```js
6767
analytics.track('Product Purchased', {
6868
order_ID: '2969302398',
6969
category: 'boots',

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,12 @@ This means you should remove Gauges' snippet from your page.
1010

1111
Gauges starts automatically collecting data on your site.
1212

13-
- - -
1413

1514

1615
## Page
1716

1817
When you call [`page`](/docs/connections/spec/page/), we call Gauges' `track` method with no arguments.
1918

20-
- - -
2119

2220

2321
## Troubleshooting

0 commit comments

Comments
 (0)