Skip to content

Commit 918eb4f

Browse files
committed
Updated FL0 documentation to use Direct destination template
1 parent 7d05525 commit 918eb4f

File tree

1 file changed

+48
-10
lines changed
  • src/connections/destinations/catalog/fl0

1 file changed

+48
-10
lines changed

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

Lines changed: 48 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,59 @@ beta: true
55
hidden: true
66
---
77

8-
{% include content/plan-grid.md name="actions" %}
9-
108
[FL0](https://fl0.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners){:target="_blank”} is the Product Intelligence Platform that converts customer interactions into revenue opportunities.
119

12-
This destination is maintained by FL0. For any issues with the destination, [contact their Support team](mailto:[email protected]).
10+
This destination is maintained by FL0. For any issues with the destination, [contact the FL0 Support team](mailto:[email protected]).
11+
1312

1413
## Getting started
1514

16-
1. From your workspace's [Destination catalog page](https://app.segment.com/goto-my-workspace/destinations/catalog){:target="_blank”} search for "FL0".
15+
1. From your workspace's [Destination catalog page](https://app.segment.com/goto-my-workspace/destinations/catalog){:target="_blank”} search for "FL0"
1716
2. Select FL0 and click **Add Destination**
18-
3. Select an existing source to connect to FL0 (Actions).
17+
3. Select an existing source to connect to FL0 (Actions)
1918
4. Go to your [FL0 Organization](https://go.fl0.com){:target="_blank"}
20-
5. Click on **Connections** in the left-hand menu.
21-
6. Click **Add source** in the top-right of the page and select **Segment**.
22-
7. Copy the **API Key** from the Segment properties.
23-
8. Enter the **API Key** in the FL0 destination settings in Segment.
19+
5. Click on **Connections** in the left-hand menu
20+
6. Click **Add source** in the top-right of the page and select **Segment**
21+
7. Copy the **API Key** from the Segment properties
22+
8. Enter the **API Key** in the FL0 destination settings in Segment
23+
24+
25+
## Supported methods
26+
27+
The FL0 destination supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
28+
29+
### Page
30+
31+
Send [Page](/docs/connections/spec/page) calls to FL0 to measure what pages your users and companies are visiting. For example:
32+
33+
```js
34+
analytics.page()
35+
```
36+
37+
Segment sends Page calls to FL0 as automatically tagged events called `Page View`.
38+
39+
40+
41+
### Identify
42+
43+
Send [Identify](/docs/connections/spec/identify) calls to notify FL0 of your logged-in users. For example:
44+
45+
```js
46+
analytics.identify('userId123', {
47+
48+
});
49+
```
50+
51+
Segment sends Identify calls to FL0 as an `Identify` event.
52+
53+
54+
### Track
55+
56+
Send [Track](/docs/connections/spec/track) calls to measure custom events that happen within your app. For example:
57+
58+
```js
59+
analytics.track('Login Button Clicked')
60+
```
61+
62+
Segment sends Track calls to FL0 as a tagged event with the same name as the event, for example `Login Button Clicked`.
2463

25-
{% include components/actions-fields.html %}

0 commit comments

Comments
 (0)