Skip to content

Commit bbe5efb

Browse files
authored
Merge pull request #6674 from james-fl0/fl0
Updated FL0 documentation to use Direct destination template
2 parents 911e418 + 3d8eca3 commit bbe5efb

File tree

1 file changed

+44
-7
lines changed
  • src/connections/destinations/catalog/fl0

1 file changed

+44
-7
lines changed

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

Lines changed: 44 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,61 @@
22
title: FL0 Destination
33
id: 66048cbafa5a03fc49b153d3
44
beta: true
5-
hidden: true
65
---
76

8-
{% include content/plan-grid.md name="actions" %}
9-
107
[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.
118

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

1412
## Getting started
1513

1614
1. From your workspace's [Destination catalog page](https://app.segment.com/goto-my-workspace/destinations/catalog){:target="_blank”} search for "FL0".
1715
2. Select FL0 and click **Add Destination**
18-
3. Select an existing source to connect to FL0 (Actions).
19-
4. Go to your [FL0 Organization](https://go.fl0.com){:target="_blank"}
16+
3. Select an existing source to connect to FL0.
17+
4. Go to your [FL0 Organization](https://go.fl0.com){:target="_blank"}.
2018
5. Click on **Connections** in the left-hand menu.
2119
6. Click **Add source** in the top-right of the page and select **Segment**.
2220
7. Copy the **API Key** from the Segment properties.
2321
8. Enter the **API Key** in the FL0 destination settings in Segment.
2422

25-
{% include components/actions-fields.html %}
23+
24+
## Supported methods
25+
26+
The FL0 destination supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
27+
28+
### Page
29+
30+
Send [Page](/docs/connections/spec/page) calls to FL0 to measure what pages your users and companies are visiting. For example:
31+
32+
```js
33+
analytics.page()
34+
```
35+
36+
Segment sends Page calls to FL0 as automatically tagged events called `Page View`.
37+
38+
39+
40+
### Identify
41+
42+
Send [Identify](/docs/connections/spec/identify) calls to notify FL0 of your logged-in users. For example:
43+
44+
```js
45+
analytics.identify('userId123', {
46+
47+
});
48+
```
49+
50+
Segment sends Identify calls to FL0 as an `Identify` event.
51+
52+
53+
### Track
54+
55+
Send [Track](/docs/connections/spec/track) calls to measure custom events that happen within your app. For example:
56+
57+
```js
58+
analytics.track('Login Button Clicked')
59+
```
60+
61+
Segment sends Track calls to FL0 as a tagged event with the same name as the event, for example `Login Button Clicked`.
62+

0 commit comments

Comments
 (0)