|
2 | 2 | title: FL0 Destination
|
3 | 3 | id: 66048cbafa5a03fc49b153d3
|
4 | 4 | beta: true
|
5 |
| -hidden: true |
6 | 5 | ---
|
7 | 6 |
|
8 |
| -{% include content/plan-grid.md name="actions" %} |
9 |
| - |
10 | 7 | [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.
|
11 | 8 |
|
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 | + |
13 | 11 |
|
14 | 12 | ## Getting started
|
15 | 13 |
|
16 | 14 | 1. From your workspace's [Destination catalog page](https://app.segment.com/goto-my-workspace/destinations/catalog){:target="_blank”} search for "FL0".
|
17 | 15 | 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"}. |
20 | 18 | 5. Click on **Connections** in the left-hand menu.
|
21 | 19 | 6. Click **Add source** in the top-right of the page and select **Segment**.
|
22 | 20 | 7. Copy the **API Key** from the Segment properties.
|
23 | 21 | 8. Enter the **API Key** in the FL0 destination settings in Segment.
|
24 | 22 |
|
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