Skip to content

Commit 2c24d3b

Browse files
committed
Fixes
1 parent 16c9537 commit 2c24d3b

File tree

3 files changed

+21
-20
lines changed

3 files changed

+21
-20
lines changed

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

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,20 @@ Identify calls that do not have a User ID value will not be sent to Hotjar.
3434

3535
Currently, the Hotjar Identify API **does not** support ingesting values passed as nested objects or lists over your identify Spec:
3636

37-
```js
37+
```json
3838
"traits": {
39-
"name": "Peter Gibbons",
40-
"email": "peter@example.com",
41-
"plan": "premium",
42-
"logins": 5,
43-
"address": {
44-
"street": "6th St",
45-
"city": "San Francisco",
46-
"state": "CA",
47-
"postalCode": "94103",
48-
"country": "USA"
49-
}
39+
"name": "Peter Gibbons",
40+
"email": "peter@example.com",
41+
"plan": "premium",
42+
"logins": 5,
43+
"address": {
44+
"street": "6th St",
45+
"city": "San Francisco",
46+
"state": "CA",
47+
"postalCode": "94103",
48+
"country": "USA"
49+
}
50+
}
5051
```
5152

5253
In the example above, Hotjar rejects all the values in the `address` field.
@@ -62,8 +63,8 @@ Currently, the Hotjar Events API **does not** support ingesting event properties
6263
```js
6364
analytics.track("Experiment Viewed", {
6465
experiment_id: "1234",
65-
experiment_name: "new_upsell_UX"
66-
variation_id: "1234b"
66+
experiment_name: "new_upsell_UX",
67+
variation_id: "1234b",
6768
variation_name: "variant"
6869
});
6970
```

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ If you would like to use `track` event data, create a `Segment Product Usage Sca
2323

2424
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](/docs/connections/spec/identify/) does. An example call would look like:
2525

26-
```
26+
```js
2727
analytics.identify('userId123', {
2828
email: 'john.doe@example.com',
2929
firstName: 'John',
@@ -45,7 +45,7 @@ Identify calls will be sent to Hydra as an `identify` event. Upon receiving an I
4545

4646
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:
4747

48-
```
48+
```js
4949
analytics.track('Device deploy started',
5050
"properties": {
5151
"feature": "Device management",

src/connections/sources/catalog/cloud-apps/marketo/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ You will need Admin permissions to your Marketo account.
3636
2. Go to **Admin > Munchkin** to find your Munchkin Account ID.
3737
![Screenshot of the Tracking Code section of Marketo's Munchkin page.](images/Image2018-04-30at5.28.54PM.png)
3838
3. Go to Admin > LaunchPoint
39-
1. If you don't already have a REST service setup, follow [these steps](http://developers.marketo.com/rest-api/custom-services/){:target="_blank"}.
40-
2. Then, copy the "Client ID" and "Client Secret" parameters.
41-
![Screenshot of the Details section of the LaunchPoint page.](images/Image2018-04-30at5.29.32PM.png)
42-
3. Paste the "Client ID" and "Client Secret" into the Segment Marketo source settings.
39+
1. If you don't already have a REST service setup, follow [these steps](http://developers.marketo.com/rest-api/custom-services/){:target="_blank"}.
40+
2. Then, copy the "Client ID" and "Client Secret" parameters.
41+
![Screenshot of the Details section of the LaunchPoint page.](images/Image2018-04-30at5.29.32PM.png)
42+
3. Paste the "Client ID" and "Client Secret" into the Segment Marketo source settings.
4343

4444
Data should start flowing into your warehouse in the next few hours.
4545

0 commit comments

Comments
 (0)