You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/connections/destinations/catalog/bucket/index.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,9 +23,9 @@ This destination is maintained by Bucket. For any issues with the destination, [
23
23
If you aren't familiar with the Segment Spec, take a look at the [Identify method documentation](/docs/connections/spec/identify/) to learn about what it does. An example call would look like:
24
24
25
25
```js
26
-
analytics.identify("userId123", {
27
-
name:"John Doe",
28
-
email:"john.doe@example.com",
26
+
analytics.identify('userId123', {
27
+
name:'John Doe',
28
+
email:'john.doe@example.com',
29
29
});
30
30
```
31
31
@@ -36,8 +36,8 @@ Segment sends Identify calls to Bucket as an `identify` event which updates User
36
36
If you aren't familiar with the Segment Spec, take a look at the [Group method documentation](/docs/connections/spec/group/) to learn about what it does. An example call would look like:
37
37
38
38
```js
39
-
analytics.identify("groupId123", {
40
-
name:"Acme, Inc",
39
+
analytics.identify('groupId123', {
40
+
name:'Acme, Inc',
41
41
});
42
42
```
43
43
@@ -48,7 +48,7 @@ Segment sends Group calls to Bucket as a `group` event which updates Company pro
48
48
If you aren't familiar with the Segment Spec, take a look at the [Track method documentation](/docs/connections/spec/track/) to learn about what it does. An example call would look like:
49
49
50
50
```js
51
-
analytics.track("Login Button Clicked", {});
51
+
analytics.track('Login Button Clicked', {});
52
52
```
53
53
54
54
Segment sends Track calls to Bucket as a `track` event which updates the Features page.
0 commit comments