Skip to content

Commit ad8ee13

Browse files
sneha-shashidharSneha Shashidharstayseesongmarkzegarelli
authored
Add Willow destination to Segment Doc (#2741)
* Willow Segment doc * Willow Segment doc * Update src/connections/destinations/catalog/willow/index.md Co-authored-by: stayseesong <[email protected]> * Update src/connections/destinations/catalog/willow/index.md Co-authored-by: stayseesong <[email protected]> * Update src/connections/destinations/catalog/willow/index.md Co-authored-by: stayseesong <[email protected]> * Apply suggestions from code review Co-authored-by: Sneha Shashidhar <[email protected]> Co-authored-by: stayseesong <[email protected]> Co-authored-by: markzegarelli <[email protected]>
1 parent 8acfd3d commit ad8ee13

File tree

1 file changed

+63
-4
lines changed
  • src/connections/destinations/catalog/willow

1 file changed

+63
-4
lines changed
Lines changed: 63 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,66 @@
11
---
2-
title: 'Willow Destination'
3-
hidden: true
2+
title: Willow Destination
3+
rewrite: true
44
id: 620ebe78b4e75580b6e6b72a
5-
published: false
6-
beta: true
75
---
6+
7+
[Willow](https://heywillow.io/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners){:target="_blank"} is a customer support platform for early stage startups. It focuses on getting your whole team (even engineering) to solve issues together with commenting and tagging, shows you everything in one place from customer messages to in-app actions, and it shows your entire customer's journey in one continuous feed from day one to today.
8+
9+
Willow maintains this destination. For any issues with the destination, [contact the Willow Support team](mailto:[email protected]).
10+
11+
## Getting Started
12+
13+
{% include content/connection-modes.md %}
14+
15+
1. From the Destinations catalog page in the Segment App, click **Add Destination**.
16+
2. Search for **Willow** in the Destinations Catalog, and select the **Willow** destination.
17+
3. Choose which Source should send data to the Willow destination.
18+
4. Select the team from your [Willow workspace](https://heywillow.io/a/workspace){:target="\_blank"}.
19+
5. Go to your team's settings page and select **API Keys**, and copy the **API key**.
20+
6. Enter the **API Key** in the Willow destination settings in Segment.
21+
## Supported methods
22+
23+
Willow supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
24+
25+
### Page
26+
27+
Send [Page](/docs/connections/spec/page) calls to Willow to see what pages a customer has visited to get more context around their issues. For example:
28+
29+
```js
30+
analytics.page();
31+
```
32+
33+
Segment sends Page calls to Willow as a `Viewed Screen`.
34+
35+
### Screen
36+
37+
Send [Screen](/docs/connections/spec/screen) calls to Willow to see what screens a customer has navigated to. For example:
38+
39+
```obj-c
40+
[[SEGAnalytics sharedAnalytics] screen:@"Home"];
41+
```
42+
43+
Segment sends Screen calls to Willow as a `Viewed Page`.
44+
45+
### Identify
46+
47+
Send [Identify](/docs/connections/spec/identify) calls to Willow to add traits to the customer. You can view these in the lifetime view and customer overview. For example:
48+
49+
```js
50+
analytics.identify("userId123", {
51+
52+
});
53+
```
54+
55+
Segment sends Identify calls to Willow as an `identify` event.
56+
57+
### Track
58+
59+
Send [Track](/docs/connections/spec/track) calls to Willow to record an event in a customer's lifetime view. For example:
60+
61+
```js
62+
analytics.track("Login Button Clicked");
63+
```
64+
65+
Segment sends Track calls to Willow as a `track` event.
66+

0 commit comments

Comments
 (0)