Skip to content

Commit 0a4d3df

Browse files
Paul YooPaul Yoo
authored andcommitted
bucket docs
1 parent 6265d98 commit 0a4d3df

File tree

1 file changed

+55
-0
lines changed
  • src/connections/destinations/catalog/bucket

1 file changed

+55
-0
lines changed
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
---
2+
title: Bucket Destination
3+
rewrite: true
4+
---
5+
[Bucket](https://bucket.so/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) features analytics for SaaS companies.
6+
7+
This destination is maintained by Bucket. For any issues with the destination, [contact the Bucket Support team](mailto:[email protected]).
8+
9+
## Getting Started
10+
11+
{% include content/connection-modes.md %}
12+
13+
1. From the Destinations catalog page in the Segment App, click **Add Destination**.
14+
2. Search for "Bucket" in the Destinations Catalog, and select the Bucket destination.
15+
3. Choose which Source should send data to the Bucket destination.
16+
4. Go to [Bucket's Settings](https://bucket.so) and find and copy the "App ID".
17+
5. Enter the App ID as "API Key" in the "Bucket" destination settings in Segment.
18+
19+
## Identify
20+
21+
If you aren't familiar with the Segment Spec, take a look at the [Identify method documentation](https://segment.com/docs/connections/spec/identify/) to learn about what it does. An example call would look like:
22+
23+
```js
24+
analytics.identify('userId123', {
25+
name: 'John Doe',
26+
27+
});
28+
```
29+
30+
Segment sends Identify calls to Bucket as an `identify` event to update Users.
31+
32+
## Group
33+
34+
If you aren't familiar with the Segment Spec, take a look at the [Group method documentation](https://segment.com/docs/connections/spec/group/) to learn about what it does. An example call would look like:
35+
36+
```js
37+
analytics.identify('groupId123', {
38+
name: 'Acme, Inc',
39+
});
40+
```
41+
42+
Segment sends Group calls to Bucket as a `group` event to update Companies.
43+
44+
45+
## Track
46+
47+
If you aren't familiar with the Segment Spec, take a look at the [Track method documentation](https://segment.com/docs/connections/spec/track/) to learn about what it does. An example call would look like:
48+
49+
```js
50+
analytics.track('Login Button Clicked', {
51+
// custom properties
52+
})
53+
```
54+
55+
Segment sends Track calls to Bucket as a `track` event to update Features.

0 commit comments

Comments
 (0)