Skip to content

Commit 0ab608a

Browse files
authored
Merge pull request #2353 from segmentio/Identify-call-2327
Identify-call-NodeJS-2327
2 parents 2e98c1b + edfee65 commit 0ab608a

File tree

7 files changed

+7
-0
lines changed

7 files changed

+7
-0
lines changed

src/_includes/content/syntax-note.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<div class="premonition info"><div class="fa fa-info-circle"></div> <p markdown=1>Based on the library you use, the syntax in the examples might be different. You can find library-specific documentation on the [Sources Overview](/docs/connections/sources/) page.</p></div>

src/connections/spec/alias.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Here's the corresponding Javascript event that would generate the above payload.
3232
```js
3333
analytics.alias("507f191e81");
3434
```
35+
{% include content/syntax-note.md %}
3536

3637
Beyond the common fields, the `alias` call takes the following fields:
3738

src/connections/spec/group.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ analytics.group("0e8c78ea9d97a7b8185e8632", {
3535
"total billed": 830
3636
});
3737
```
38+
{% include content/syntax-note.md %}
3839

3940
Beyond the common fields, the `group` call takes the following fields:
4041

src/connections/spec/identify.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ analytics.identify("97980cfea0067", {
4848
logins: 5
4949
});
5050
```
51+
{% include content/syntax-note.md %}
5152

5253
Beyond the common fields, an `identify` call has the following fields:
5354

src/connections/spec/page.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ And here's the corresponding JavaScript event that would generate the above payl
2626
```js
2727
analytics.page("Retail Page","Home");
2828
```
29+
{% include content/syntax-note.md %}
2930

3031
Beyond the common fields, the `page` call takes the following fields:
3132

src/connections/spec/screen.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ And here's the corresponding Objective-C event that would generate the above pay
2424
[[SEGAnalytics sharedAnalytics] screen:@"Home"
2525
properties:@{ @"Feed Type": @"private" }];
2626
```
27+
{% include content/syntax-note.md %}
2728
2829
Beyond the common fields, the `screen` call takes the following fields:
2930

src/connections/spec/track.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ analytics.track("User Registered", {
2929
accountType: "Facebook"
3030
});
3131
```
32+
{% include content/syntax-note.md %}
3233

3334
Beyond the common fields, the `track` call has the following fields:
3435

0 commit comments

Comments
 (0)